getowner need now an option

This commit is contained in:
2013-08-24 22:32:54 +02:00
parent 4c27cb586d
commit e4c129efc5
10 changed files with 106 additions and 98 deletions

View File

@ -52,9 +52,9 @@ def test_consistency_default_diff():
raises(ValueError, "c.a = 1")
c.a = 2
c.b = 3
assert c.getowner('a') is owners.user
assert c.getowner(a) is owners.user
raises(ValueError, "del(c.a)")
assert c.getowner('a') is owners.user
assert c.getowner(a) is owners.user
def test_consistency_ip_netmask():