Exemplo n.º 1
0
 def test_config_has_not_lower_case_variable(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertNotIn('lower_case', config)
Exemplo n.º 2
0
 def test_failure_for_loading_config(self):
     config = Config(self.root_path)
     self.assertRaises(FileNotFoundError, config.load_from_pyfile,
                       'no_exists.py')
Exemplo n.º 3
0
 def test_load_from_module(self):
     from tests import dummy_config
     config = Config(self.root_path)
     config.load_from_module(dummy_config)
     self.assertIn('UPPER_CASE', config)
Exemplo n.º 4
0
 def test_load_from_pyfile(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertIn('UPPER_CASE', config)
Exemplo n.º 5
0
 def test_constructor_set_root_path(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertIn('root_path', dir(config))
Exemplo n.º 6
0
 def test_config_has_not_lower_case_variable(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertNotIn('lower_case', config)
Exemplo n.º 7
0
 def test_load_from_pyfile(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertIn('UPPER_CASE', config)
Exemplo n.º 8
0
 def test_load_from_module(self):
     from tests import dummy_config
     config = Config(self.root_path)
     config.load_from_module(dummy_config)
     self.assertIn('UPPER_CASE', config)
Exemplo n.º 9
0
 def test_constructor_set_root_path(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertIn('root_path', dir(config))