Skip to main content

A utility package for making better test assertions

Project description

Build Status

Asserty

Asserty is a utility package that provides methods for better assertion in testing.

Installation

The package can be installed using pip:

$ pip install asserty

Examples

You make assertions by importing the assert_that function from the asserty package:

from asserty import assert_that

assert_that("str").not_equals("string")
assert_that(5).is_in(range(10)).also.is_less_than(8)

def myfunc(arg):
    if not isinstance(arg, str):
        raise TypeError()
    return arg+"yay"

assert_that(myfunc).if_called_with(1).raises(TypeError)
assert_that(myfunc).if_called_with("Hey-").returns("Hey-yay")

Outside a test context that does not handle AssertionError you can import the equivalent function called that:

from asserty import that

assert that("str").not_equals("string")
assert that(5).is_in(range(10)).also.is_less_than(8)

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

asserty-1.3.0.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

asserty-1.3.0-py3-none-any.whl (6.6 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