Finish common again

This commit is contained in:
Tim Bentley 2017-12-09 16:37:26 +00:00
parent ac95f4e3ca
commit c25a446839
2 changed files with 3 additions and 4 deletions

View File

@ -70,7 +70,7 @@ class TestCommonFunctions(TestCase):
# THEN: `extension_loader` should only try to import the files that are matched by the blob, excluding the
# files listed in the `excluded_files` argument
mocked_import_module.assert_has_calls([call('openlp.import_dir.file1'),
call('openlp.import_dir.file4')])
call('openlp.import_dir.file4')])
def test_extension_loader_import_error(self):
"""

View File

@ -177,12 +177,11 @@ class TestShutil(TestCase):
path = Path('test', 'path')
# WHEN: Calling :func:`openlp.core.common.path.rmtree` with the path parameter as Path object type
result = path.rmtree()
path.rmtree()
# THEN: :func:`shutil.rmtree` should have been called with the str equivalents of the Path object.
mocked_shutil_rmtree.assert_called_once_with(
os.path.join('test', 'path'), False, None)
assert not result
def test_rmtree_optional_params(self):
"""
@ -268,7 +267,7 @@ class TestPath(TestCase):
result = path_to_str(Path('test/path'))
# THEN: `path_to_str` should return a string representation of the Path object
assert result == os.path.join('test', 'path')
assert result == os.path.join('test', 'path')
def test_str_to_path_type_error(self):
"""