def test_exists(self): assert Config.exists() is True os.remove(str(self.tmpdir.join('.lily').join('config.json'))) assert Config.exists() is False
def create_empty_config(self, src_dir): if not Config.exists(): Config.create_empty(src_dir)