Skip to main content

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,
        [],
        {},
        (),
        object,
        object(),
        type,
        type(None),
        None,
    ],
)
def test_anything(obj, Anything):
    assert obj == Anything


@pytest.mark.parametrize(
    "obj",
    [
        "string",
        123,
        123.1,
        True,
        False,
        [],
        {},
        (),
        object,
        object(),
        type,
        type(None),
    ],
)
def test_something(obj, Something):
    assert obj == Something


def test_nothing(Something):
    assert None != Something


def test_something_special(Something):
    assert object() == Something(lambda x: isinstance(x, object))

Project details


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.3.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

pytest_anything-0.1.3-py3-none-any.whl (3.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page