Spaces:
Runtime error
Runtime error
File size: 279 Bytes
d82fef4 | 1 2 3 4 5 6 7 8 9 10 11 12 | # tests/test_basic.py
import math
def helper_square(x: int) -> int:
return x * x
def test_math_and_helper():
# Deterministic, fast checks to verify the test runner works
assert 2 + 2 == 4
assert math.isclose(math.sqrt(9), 3.0)
assert helper_square(5) == 25
|