This project has been archived.
The maintainers of this project have marked this project as archived. No new releases are expected.
Project description

I really missed assertRaisesRegexp in unittest module from pytest,
so I wrote this simple plugin.
Usage
# some_module.py
class ExpectedException(Exception):
pass
def function_to_test():
raise ExpectedException('error message: 1560')
# test_some_module.py
from pytest import raises_regexp
from some_module import function_to_test, ExpectedException
def test_something_to_test():
with raises_regexp(ExpectedException, r".* 1560"):
function_to_test()
Installation
$ pip install pytest-raisesregexp
It installs as a pytest entry point, so you can:
from pytest import raises_regexp
LICENSE
MIT license
Copyright (c) 2013-2015 Kiss György
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pytest-raisesregexp-2.1.tar.gz
.
File metadata
File hashes
Hashes for pytest-raisesregexp-2.1.tar.gz
Algorithm |
Hash digest |
|
SHA256 |
b54372494fc1f11388b1b9348aeb36b69609699eb8f46e0e010afc733d78236a |
|
MD5 |
1371419b645c44e3a98649ab1cd7fb55 |
|
BLAKE2b-256 |
7a6d983b6c6ba2e06b39d987711c7435f9759c466cdb2625440595663d7dfa63 |
|
See more details on using hashes here.
File details
Details for the file pytest_raisesregexp-2.1-py2-none-any.whl
.
File metadata
File hashes
Hashes for pytest_raisesregexp-2.1-py2-none-any.whl
Algorithm |
Hash digest |
|
SHA256 |
76ca176a3044ba70292351dfdb65ab0558fac9b0f2de71d3a4048593fd6c7db9 |
|
MD5 |
3bb9cbf19def2e387713b6d034a06792 |
|
BLAKE2b-256 |
688b7e721f57645665d5fc652172d83434a62af30ddb06eb41a34f8ec595d8f1 |
|
See more details on using hashes here.