Fixed another windows test by properly constructing paths.

This commit is contained in:
Tomas Groth 2014-08-21 15:07:02 +02:00
parent 3a1fda85d5
commit fd4dc4caf7

View File

@ -62,12 +62,12 @@ class TestThemeManager(TestCase):
zipfile.ZipFile.write = MagicMock()
# WHEN: The theme is exported
theme_manager._export_theme('/some/path', 'Default')
theme_manager._export_theme(os.path.join('some', 'path'), 'Default')
# THEN: The zipfile should be created at the given path
zipfile.ZipFile.__init__.assert_called_with('/some/path/Default.otz', 'w')
zipfile.ZipFile.__init__.assert_called_with(os.path.join('some', 'path', 'Default.otz'), 'w')
zipfile.ZipFile.write.assert_called_with(os.path.join(TEST_RESOURCES_PATH, 'themes', 'Default', 'Default.xml'),
'Default/Default.xml')
os.path.join('Default', 'Default.xml'))
def initial_theme_manager_test(self):
"""