Metadata-Version: 2.3
Name: assertive
Version: 1.0.1
Summary: A small assertion library for testing
License: MIT
Author: Peter Daly
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: bidict (>=0.23.1,<0.24.0)
Project-URL: Documentation, https://peter-daly.github.io/assertive/
Project-URL: Homepage, https://github.com/peter-daly/assertive
Project-URL: Repository, https://github.com/peter-daly/assertive
Description-Content-Type: text/markdown

# Assertive

Assertive is a testing library that provides declarative assertions to you python tests.


## Criteria
Criteria are declarative statements that can be used with assert statements to give a richer test experience.

```python
assert 5 == is_greater_than(4)
assert 5 == is_odd()
assert 5 != is_even()
```

Criteria can also be composed with logical operators to give a richer experience in writing tests

```python
assert 5 == is_greater_than(4) & is_less_than(6) # Using AND
assert 5 == is_even() | is_less_than(6) # Using OR
assert 5 == is_even() ^ is_odd() # Using XOR
assert 5 == ~is_even()  # Using INVERT
```

