diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-02-13 11:12:28 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-02-13 11:12:28 -0500 |
commit | b15e57265e8593e3a085f0b44858f60878289435 (patch) | |
tree | 8c6befb36df33812639b2c32c0a6975f62d98c32 /tests/events_test.py | |
parent | c9a5290224dd7254a23cb6e5e3baa43a21fd2362 (diff) |
All the tests now remove the node directories (tests/shard-dir-0 & tests/shard-dir-1) in the teardown method.
modified: tests/config_test.py
modified: tests/crypto_test.py
modified: tests/events_test.py
modified: tests/file_test.py
modified: tests/silo_test.py
deleted: tests/shard-dir-0/.foo
deleted: tests/shard-dir-1/.foo
Diffstat (limited to 'tests/events_test.py')
-rw-r--r-- | tests/events_test.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/events_test.py b/tests/events_test.py index cdcdb09..89b2033 100644 --- a/tests/events_test.py +++ b/tests/events_test.py @@ -37,7 +37,7 @@ from combox.file import (relative_path, purge_dir, from combox.silo import ComboxSilo from tests.utils import (get_config, shardedp, dirp, renamedp, - path_deletedp) + path_deletedp, rm_nodedirs) class TestEvents(object): @@ -240,3 +240,5 @@ class TestEvents(object): silo.remove(self.ipsum) silo.remove(self.TEST_FILE) + + rm_nodedirs(self.config) |