An open API service indexing awesome lists of open source software.

https://github.com/codewars/python-test-framework

Codewars test framework for Python
https://github.com/codewars/python-test-framework

code-runner python test-framework

Last synced: 8 months ago
JSON representation

Codewars test framework for Python

Awesome Lists containing this project

README

          

# Codewars Test Framework for Python

### Installation

```bash
pip install git+https://github.com/codewars/python-test-framework.git#egg=codewars_test
```

### Basic Example

```python
import codewars_test as test
from solution import add

@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')
```