Required for backward compatibility.
(tmpdir_factory)
| 119 | |
| 120 | |
| 121 | def test_write_config_has_skeleton(tmpdir_factory): |
| 122 | """Required for backward compatibility.""" |
| 123 | fake_folder = tmpdir_factory.mktemp("fakeConfigs") |
| 124 | fake_config_file = fake_folder / Path("fakeConfig") |
| 125 | auxiliaryfunctions.write_config(fake_config_file, {}) |
| 126 | config_data = auxiliaryfunctions.read_config(fake_config_file) |
| 127 | assert "skeleton" in config_data |
| 128 | |
| 129 | |
| 130 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected