Stand-alone Assertions
Project description
Stand-alone Assertions for Python
This package provides a few advantages over the assertions provided by unittest.TestCase:
Can be used stand-alone, for example:
In test cases, not derived from TestCase.
In fake and mock classes.
In implementations as rich alternative to the assert statement.
PEP 8 compliance.
Custom stand-alone assertions can be written easily.
Arguably a better separation of concerns, since TestCase is responsible for test running only, if assertion functions are used exclusively.
There are a few regressions compared to assertions from TestCase:
The default assertion class (AssertionError) can not be overwritten. This is rarely a problem in practice.
asserts does not support the addTypeEqualityFunc() functionality.
Usage:
>>> from asserts import assert_true, assert_equal, assert_raises >>> my_var = 13 >>> assert_equal(13, my_var) >>> assert_true(True, msg="custom failure message") >>> with assert_raises(KeyError): ... raise KeyError()
Failure messages can be customized:
>>> assert_equal(13, 14, msg_fmt="{got} is wrong, expected {expected}") Traceback (most recent call last): ... AssertionError: 14 is wrong, expected 13
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 Distributions
Built Distribution
File details
Details for the file asserts-0.8.6-py2.py3-none-any.whl
.
File metadata
- Download URL: asserts-0.8.6-py2.py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.2.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 609078daa69b619a733e812acd4d6d1d559028bed711c8712942fe718d50db57 |
|
MD5 | a8833f9b36f765ce6a22f10427c17a6b |
|
BLAKE2b-256 | 90bed2b1249330b07afcbbfdbe5387d44e8bdeb728fba80e6e0f2bae2c4c657d |