Support converting a folder of files, not just individual files each time, optionally recursively
This commit is contained in:
parent
4d58107b22
commit
f0748e98e0
9 changed files with 874 additions and 23 deletions
|
|
@ -14,7 +14,7 @@ def test_cli_stdout_toml(capsys):
|
|||
cfg_path = SAMPLES_DIR / "tom.toml"
|
||||
exit_code = cli._main([str(cfg_path), "-r", "jinjaturtle"])
|
||||
|
||||
assert exit_code
|
||||
assert exit_code == 0
|
||||
|
||||
captured = capsys.readouterr()
|
||||
out = captured.out
|
||||
|
|
@ -48,7 +48,7 @@ def test_cli_writes_output_files(tmp_path, capsys):
|
|||
]
|
||||
)
|
||||
|
||||
assert exit_code
|
||||
assert exit_code == 0
|
||||
assert defaults_path.is_file()
|
||||
assert template_path.is_file()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue