codewars-test-teey

Codewars test framework for Python (fork)


License
MIT
Install
pip install codewars-test-teey==0.1.0

Documentation

Codewars Test Framework for Python

Example

from solution import add
import codewars_test as test

@test.describe('Example Tests')
def example_tests():
    @test.it('Example Test Case')
    def example_test_case():
        test.assert_equals(add(1, 1), 2, 'Optional Message on Failure')