Metadata-Version: 2.1
Name: ward
Version: 0.1.1a0
Summary: A Python 3 test framework.
Home-page: http://github.com/darrenburns/ward
Author: Darren Burns
Author-email: darrenb900@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: blessings (==1.7)
Requires-Dist: colorama (==0.4.1)
Requires-Dist: dataclasses (==0.6)

# Ward

An experimental test runner for Python that supports pytest-style fixtures. This project is a work in progress, and is not production ready.

![screenshot](screenshot.png)

## Example

```python
# Define a fixture
@fixture
def one():
    return 1

# Inject fixtures into each other
@fixture
def two(one)
    return one + one

# Inject fixtures into tests
def test_one_plus_two_equals_three(one, two):
    expect(one + two).equals(3)
```

