1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2025-12-26 16:32:37 +01:00

Removed six as a dependency

Changed logic for checking if run_command argument is a list. Fixed
tests and refactoring save_save() method in cd32 module.
This commit is contained in:
2017-01-01 14:13:48 +01:00
parent ef5631de3c
commit 4c39e572a6
5 changed files with 9 additions and 12 deletions

View File

@@ -144,7 +144,7 @@ class TestCD32(TestCase):
acd32 = cd32.CD32()
acd32.dir = self.dirname
acd32.save_filename = "foobar_save.7z"
run.return_value = 0
run.return_value = True
self.assertTrue(acd32._save_save())
@@ -157,7 +157,7 @@ class TestCD32(TestCase):
os.mkdir(os.path.join(self.dirname, 'fs-uae-save'))
self.assertTrue(acd32._save_save())
run.return_value = 1
run.return_value = False
self.assertFalse(acd32._save_save())
@mock.patch('fs_uae_wrapper.utils.run_command')