From 2e6d4729b51800702e4e923a1bf5a75c31a76fb8 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 5 Feb 2026 11:01:20 +0000 Subject: [PATCH] Initial upload: Project Scaffold CLI with multi-language templates and CI/CD --- .../python/{{project_slug}}/test_main.py.j2 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 project_scaffold_cli/templates/python/{{project_slug}}/test_main.py.j2 diff --git a/project_scaffold_cli/templates/python/{{project_slug}}/test_main.py.j2 b/project_scaffold_cli/templates/python/{{project_slug}}/test_main.py.j2 new file mode 100644 index 0000000..6b38c4e --- /dev/null +++ b/project_scaffold_cli/templates/python/{{project_slug}}/test_main.py.j2 @@ -0,0 +1,15 @@ +"""Test module for {{ project_name }}.""" + +import pytest + +from {{ project_slug }} import __version__ + + +def test_version(): + """Test version is a string.""" + assert isinstance(__version__, str) + + +def test_example(): + """Example test.""" + assert True