Correct the tests for afs.acl to match a function rename.
[invirt/packages/python-afs.git] / afs / tests / test_acl.py
index 385e2ad..aa4d1ae 100644 (file)
@@ -1,10 +1,13 @@
 import nose
 import afs.acl as acl
 
-def test_crights():
-    assert acl.crights('read') & acl.READ
-    assert acl.crights('read') & acl.LOOKUP
-    assert not acl.crights('read') & acl.WRITE
+def test_showRights():
+    assert acl.showRights(acl.READ | acl.WRITE) == "rw"
+
+def test_readRights():
+    assert acl.readRights('read') & acl.READ
+    assert acl.readRights('read') & acl.LOOKUP
+    assert not acl.readRights('read') & acl.WRITE
 
 def test_retrieve():
     assert acl.ACL.retrieve('/afs/athena.mit.edu/contrib/bitbucket2').pos['system:anyuser'] & acl.WRITE