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_load_from_pyfile(self):
     config = Config(self.root_path)
     config.load_from_pyfile('dummy_config.py')
     self.assertIn('UPPER_CASE', config)
Exemple #3
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 #4
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 #5
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 #6
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))