- Fixed package name from auto-readme-cli to project-scaffold-cli - Fixed dependencies to match project-scaffold-cli requirements - Fixed linting import sorting issues in test files
16 lines
261 B
Django/Jinja
16 lines
261 B
Django/Jinja
"""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
|