Exemple #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)
Exemple #2
0
 def test_failure_for_loading_config(self):
     config = Config(self.root_path)
     self.assertRaises(FileNotFoundError, config.load_from_pyfile,
                       'no_exists.py')
Exemple #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)
Exemple #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)
Exemple #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))
Exemple #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)
Exemple #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)
Exemple #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)
Exemple #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))