summaryrefslogtreecommitdiffstats
path: root/tests/silo_test.py
diff options
context:
space:
mode:
authorSiddharth Ravikumar <sravik@bgsu.edu>2015-02-13 11:12:28 -0500
committerSiddharth Ravikumar <sravik@bgsu.edu>2015-02-13 11:12:28 -0500
commitb15e57265e8593e3a085f0b44858f60878289435 (patch)
tree8c6befb36df33812639b2c32c0a6975f62d98c32 /tests/silo_test.py
parentc9a5290224dd7254a23cb6e5e3baa43a21fd2362 (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/silo_test.py')
-rw-r--r--tests/silo_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/silo_test.py b/tests/silo_test.py
index 24ac5d9..7e0eb40 100644
--- a/tests/silo_test.py
+++ b/tests/silo_test.py
@@ -24,7 +24,7 @@ from os import path, remove
from combox.silo import ComboxSilo
from combox.file import read_file, write_file
-from tests.utils import get_config
+from tests.utils import get_config, rm_nodedirs
class TestSilo(object):
"""
@@ -98,3 +98,4 @@ class TestSilo(object):
csilo = ComboxSilo(self.config)
csilo.remove(self.LOREM)
csilo.remove(self.IPSUM)
+ rm_nodedirs(self.config)