We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bdbc9fe + 580c9d5 commit e4450faCopy full SHA for e4450fa
tests/ansible/tests/target_test.py
@@ -86,6 +86,8 @@ def test_file_exists(self):
86
self.assertFalse(self.func(bleh))
87
self.assertEquals(open(bleh).read(), 'derp')
88
89
+ @unittest2.skipIf(
90
+ os.geteuid() == 0, 'writes by root ignore directory permissions')
91
def test_unwriteable(self):
92
with NamedTemporaryDirectory() as temp_path:
93
os.chmod(temp_path, 0)
0 commit comments