For more information, see the documentation.
Write a test.
from tryke import expect, test, describe
def add(a: int, b: int) -> int:
return a + b
with describe("add"):
@test("1 + 1")
def test_basic():
expect(add(1, 1)).to_equal(2)Run your tests.
uvx tryke testThis repository is licensed under the MIT License.