[tests] Add Python3 test run

Add testrun to also verify Python3 functionality.

+ Immediately fix a Python3 incompatibility.

see #23
This commit is contained in:
Tobi-wan Kenobi 2016-12-03 20:45:52 +01:00
parent a8a6c9bba2
commit a720baf407
3 changed files with 5 additions and 3 deletions

View file

@ -13,6 +13,6 @@ class TestConfig(unittest.TestCase):
def test_load_simple_modules(self):
cfg = Config([ "-m" ] + self.someSimpleModules)
self.assertEquals(cfg.modules(),
map(lambda x: { "name": x, "module": x }, self.someSimpleModules))
list(map(lambda x: { "name": x, "module": x }, self.someSimpleModules)))
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4