From 13a15aaf05747cc774cb648e7a257e64a7e7482a Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sat, 21 Jun 2025 11:24:11 -0400 Subject: [PATCH] Add download folder to voxvera template --- templates/voxvera/download/.gitkeep | 0 tests/test_cli.py | 2 ++ 2 files changed, 2 insertions(+) create mode 100644 templates/voxvera/download/.gitkeep diff --git a/templates/voxvera/download/.gitkeep b/templates/voxvera/download/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_cli.py b/tests/test_cli.py index 414f70a..519c7e1 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -37,6 +37,8 @@ def test_init_template(tmp_path, monkeypatch): assert dest.is_dir() assert (dest / "config.json").exists() assert (dest / "index.html").exists() + # new download directory should be copied as well + assert (dest / "download").is_dir() def test_build(tmp_path, monkeypatch):