1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

Check test directory is cleaned up by Python tests.

This commit is contained in:
Jelmer Vernooij
2008-05-29 17:29:56 +02:00
parent 3947327f8c
commit c338269b4b

View File

@ -47,6 +47,7 @@ class TestCaseInTempDir(unittest.TestCase):
def tearDown(self): def tearDown(self):
super(TestCaseInTempDir, self).tearDown() super(TestCaseInTempDir, self).tearDown()
self.assertEquals([], os.listdir(self.tempdir))
os.rmdir(self.tempdir) os.rmdir(self.tempdir)