Skip to main content

Placeholder variables to aid in testing.

Project description

Simplify your test assertions forever.

from pyariable import Variable

def test_dict():
    x = Variable()
    y = Variable()
    assert {1: "XXX", 2: "XXX", 3: "YYY"} == {1: x, 2: x, 3: y}
    assert x != y

In some tests it’s common to get a random ID back from a database. Your assertions are simpler when you substitute a Variable object for the expected value.

from pyariable import Variable

def test_list():
    x = Variable()
    y = Variable()
    assert [
        {"db_id": 590, "name": "alice"},
        {"db_id": 590, "name": "bob"},
        {"db_id": 999, "name": "charlie"},
    ] == [
        {"db_id": x, "name": "alice"},
        {"db_id": x, "name": "bob"},
        {"db_id": y, "name": "charlie"},
    ]
    assert x != y
    assert x < y

Installation

pip install pyariable

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

pyariable-0.5.0.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

pyariable-0.5.0-py3-none-any.whl (2.1 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