42
42
def check_exist(self, tree):
43
43
"""Just check that both files have the right executable bits set"""
48
self.assertEqual([('a', True), ('b', False)], measured)
49
45
self.failUnless(tree.is_executable(self.a_id),
50
46
"'a' lost the execute bit")
51
47
self.failIf(tree.is_executable(self.b_id),
52
48
"'b' gained an execute bit")
54
51
def check_empty(self, tree, ignore_inv=False):
55
52
"""Check that the files are truly missing