bumblebee-status/tests/test_config.py

19 lines
583 B
Python
Raw Normal View History

2016-11-05 07:54:16 +01:00
import unittest
from bumblebee.config import Config
2016-11-05 07:54:16 +01:00
class TestConfig(unittest.TestCase):
2016-11-05 07:54:16 +01:00
def setUp(self):
self.defaultConfig = Config()
self.someSimpleModules = [ "foo", "bar", "baz" ]
2016-11-05 07:54:16 +01:00
def test_no_modules_by_default(self):
self.assertEquals(self.defaultConfig.modules(), [])
def test_load_simple_modules(self):
cfg = Config([ "-m" ] + self.someSimpleModules)
self.assertEquals(cfg.modules(),
map(lambda x: { "name": x, "module": x }, self.someSimpleModules))
2016-11-05 07:54:16 +01:00
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4