Pytest fixtures to assert anything and something
Project description
If you ever had to ignore a certain part of an assertion, you would end up with this.
import pytest @pytest.mark.parametrize("obj", ["string", 123, 123.1, True, False, None, object()]) def test_anything(obj, Anything): assert obj == Anything @pytest.mark.parametrize("obj", ["string", 123, 123.1, True, False, object()]) def test_something(obj, Something): assert obj == Something def test_nothing(Something): obj = None assert obj != Something def test_anything_repr(Anything): assert repr(Anything) == "Anything" def test_something_repr(Something): assert repr(Something) == "Something"
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pytest-anything-0.1.2.tar.gz
(2.0 kB
view hashes)
Built Distribution
Close
Hashes for pytest_anything-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 852e5e8b49f29e28c58f8a50f72c6c6e743d44a3a648b1492eb8917b1cec053e |
|
MD5 | c05b1f821b9f0c6329267e6cf570a9e3 |
|
BLAKE2-256 | 0fd8a53b6ca65cc38ef097603e66c6c3e531ffd9d5d2611a2233e151d220e8bd |