def test_load_config(self):
     config = CBASConfig()
     received = config.load_config('ANY_PATH')
     expected = {'nospecial': 'ANY_VALUE_ONE',
                 'with_hyphen': 'ANY_VALUE_TWO',
                 'with_many_hyphens': 'ANY_VALUE_THREE',
                 'with_underscore': 'ANY_VALUE_FOUR',
                 'with_under_scores': 'ANY_VALUE_FIVE',
                 }
     self.assertEqual(expected, received)
 def test_load_config(self):
     config = CBASConfig()
     received = config.load_config('ANY_PATH')
     expected = {
         'nospecial': 'ANY_VALUE_ONE',
         'with_hyphen': 'ANY_VALUE_TWO',
         'with_many_hyphens': 'ANY_VALUE_THREE',
         'with_underscore': 'ANY_VALUE_FOUR',
         'with_under_scores': 'ANY_VALUE_FIVE',
     }
     self.assertEqual(expected, received)