[tests] Add Python3 test run
Add testrun to also verify Python3 functionality. + Immediately fix a Python3 incompatibility. see #23
This commit is contained in:
parent
a8a6c9bba2
commit
a720baf407
3 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue