can create a config with a mix_config

This commit is contained in:
2020-03-04 15:39:47 +01:00
parent ad6ed0a648
commit f1651848d2
4 changed files with 78 additions and 69 deletions

View File

@ -1306,6 +1306,16 @@ async def test_mix_add_config_readd():
await delete_sessions([mix, mix2])
@pytest.mark.asyncio
async def test_mix_new_config_readd():
od = make_description()
mix = await MixConfig(od, [])
assert len(list(await mix.config.list())) == 0
mix2 = await mix.config.new('mix2')
assert len(list(await mix.config.list())) == 1
await delete_sessions([mix, mix2])
@pytest.mark.asyncio
async def test_meta_new_mixconfig():
od = make_description()