(config)
| 43 | |
| 44 | |
| 45 | def dump_and_load_config(config): |
| 46 | config_path = ehforwarderbot.utils.get_config_path() |
| 47 | with config_path.open('w') as f: |
| 48 | yaml.dump(config, f) |
| 49 | return ehforwarderbot.config.load_config() |
| 50 | |
| 51 | |
| 52 | def test_load_config(): |
no test coverage detected