11 lines
205 B
GDScript
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)
|