(self)
| 551 | |
| 552 | class TestReadStrFromConfig(unittest.TestCase): |
| 553 | def test_normal_text(self): |
| 554 | value = read_str_from_config({'key1': 'xyz'}, 'key1') |
| 555 | self.assertEquals('xyz', value) |
| 556 | |
| 557 | def test_none_value_no_default(self): |
| 558 | value = read_str_from_config({'key1': None}, 'key1') |
nothing calls this directly
no test coverage detected