summaryrefslogtreecommitdiffstats
path: root/multivimbroker
diff options
context:
space:
mode:
authorEthan Lynn <ethanlynnl@vmware.com>2018-03-25 22:07:30 -0700
committerEthan Lynn <ethanlynnl@vmware.com>2018-03-25 22:07:53 -0700
commitdcdca06c97e6b3c9b603b1e002384fb5122cf8ec (patch)
tree079f2381896069ce75e72d0ea3ca462ac521604d /multivimbroker
parentdb20d587b47b1a24689b2afb6459f202b04ceb01 (diff)
Add test_delete_dirs_success
Add test_delete_dirs_success for fileutil.py Change-Id: I8fb91a38889afcd4b1a3fd4ca86b67e73cae3379 Issue-ID: MULTICLOUD-198 Signed-off-by: Ethan Lynn <ethanlynnl@vmware.com>
Diffstat (limited to 'multivimbroker')
-rw-r--r--multivimbroker/multivimbroker/tests/test_fileutil.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/multivimbroker/multivimbroker/tests/test_fileutil.py b/multivimbroker/multivimbroker/tests/test_fileutil.py
index 9bc48a6..521c3b4 100644
--- a/multivimbroker/multivimbroker/tests/test_fileutil.py
+++ b/multivimbroker/multivimbroker/tests/test_fileutil.py
@@ -32,3 +32,11 @@ class TestFileutil(unittest.TestCase):
mock_exists.return_value = False
fileutil.make_dirs(new_path)
mock_mkdir.assert_called_once_with(new_path, 0777)
+
+ @mock.patch.object(os.path, "exists")
+ @mock.patch("shutil.rmtree")
+ def test_delete_dirs_success(self, mock_rmtree, mock_exists):
+ mock_exists.return_value = True
+ new_path = "/tmp/tests"
+ fileutil.delete_dirs(new_path)
+ mock_rmtree.assert_called_once_with(new_path)