-
Notifications
You must be signed in to change notification settings - Fork 220
Codewars Python Test Framework
kazk edited this page Aug 30, 2017
·
17 revisions
test.describe("Example Tests")
test.it("Example Test Case")
test.assert_equals(add(1, 1), 2, "Optional Message")
TODO Improve the descriptions while keeping them simple.
Checks that the actual value equals the expected value.
Checks that the actual value does not equal the expected value.
Checks that function
throws`.
Checks that passed
is truthy.