Default docker to log into log-dir

This commit is contained in:
Matthias
2020-04-21 19:47:49 +02:00
parent 102c4cf261
commit 87f1060abc
4 changed files with 5 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ def test_create_userdata_dir(mocker, default_conf, caplog) -> None:
md = mocker.patch.object(Path, 'mkdir', MagicMock())
x = create_userdata_dir('/tmp/bar', create_dir=True)
assert md.call_count == 8
assert md.call_count == 9
assert md.call_args[1]['parents'] is False
assert log_has(f'Created user-data directory: {Path("/tmp/bar")}', caplog)
assert isinstance(x, Path)