Pytest Matchers
Test your code with vague constrains
Quick Install
With pip
pip install pytest-matchers
With poetry
poetry add pytest-matchers [--group dev]
Usage
Examples on tests/examples
from random import random
from pytest_matchers import is_number
def test_random_number():
assert random() == is_number(min_value=0, max_value=1)
And when failing:
def test_random_number():
assert random() == is_number(min_value=1, max_value=2)
On pytest CLI
=================================== FAILURES ===================================
______________________________ test_random_number ______________________________
def test_random_number():
> assert random() == is_number(min_value=1, max_value=2)
E assert 0.9048172867693559 == To be a number between 1 and 2
E + where 0.9048172867693559 = random()
E + and To be a number between 1 and 2 = is_number(min_value=1, max_value=2)
tests/examples/test_example.py:6: AssertionError
=========================== short test summary info ============================
FAILED tests/examples/test_example.py::test_random_number - assert 0.9048172867693559 == To be a number between 1 and 2
============================== 1 failed in 0.02s ===============================
On PyCharm
tests/examples/test_example.py:4 (test_random_number)
0.9048172867693559 != To be a number between 1 and 2
Expected :To be a number between 1 and 2
Actual :0.9048172867693559
Matchers
is_numberis_stringis_listis_instancebetweenone_ofhas_attributeis_datetimeis_datetime_stringsame_valuedifferent_valueif_trueif_falsecaseis_dictis_strict_dictis_jsonis_uuidis_exceptionafter_applying_is
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pytest_matchers-0.3.6.tar.gz
(15.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest_matchers-0.3.6.tar.gz.
File metadata
- Download URL: pytest_matchers-0.3.6.tar.gz
- Upload date:
- Size: 15.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8359d7b9a48790467a2b4cd9d2c103ee63e69a2cefcfbd115df0d2bdd2185a61
|
|
| MD5 |
734412bbe54ef9cf2442b1a49df8266e
|
|
| BLAKE2b-256 |
a2fbc48819f34b7fd7982556e20bc0a6183b854ad5fa6473cbe029e47c8a9016
|
File details
Details for the file pytest_matchers-0.3.6-py3-none-any.whl.
File metadata
- Download URL: pytest_matchers-0.3.6-py3-none-any.whl
- Upload date:
- Size: 32.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e6bacf4b9ea56cb82db20b6e4032ebcaf11b5b854b6d887639a31d4a2107e677
|
|
| MD5 |
48f5a05645f83ec3caddffc710900757
|
|
| BLAKE2b-256 |
1d71eb7f9de24f697d9b8b68730b37b879d5ee098184a061840678115d79305a
|