1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2026-01-09 15:24:15 +01:00

Added logging module

This commit is contained in:
2017-01-08 13:17:41 +01:00
parent 7931022777
commit a918e4c9ff
4 changed files with 71 additions and 10 deletions

View File

@@ -57,10 +57,10 @@ class TestBase(TestCase):
self.assertDictEqual(bobj.fsuae_options, {})
os.chdir(self.dirname)
get_config.return_value = {'foo': 'bar'}
get_config.return_value = {'fmv_rom': 'bar'}
bobj._normalize_options()
self.assertDictEqual(bobj.fsuae_options,
{'foo': os.path.join(self.dirname, 'bar')})
{'fmv_rom': os.path.join(self.dirname, 'bar')})
get_config.return_value = {'floppies_dir': '../some/path'}
bobj.fsuae_options = utils.CmdOption()