Files
Cozypaw-Hospital/test/unit/test_smoke.gd
Steven Wroblewski 978c8a5c80 chore(tooling): add GUT test infrastructure and smoke test
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-17 22:35:08 +02:00

11 lines
205 B
GDScript

## Smoke test — verifies GUT is installed and the test runner works.
extends GutTest
func test_gut_is_working() -> void:
assert_true(true)
func test_basic_arithmetic() -> void:
assert_eq(1 + 1, 2)