Simple pytest plugin to look for regex in Exceptions
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
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest-raisesregexp-2.1.tar.gz.
File metadata
- Download URL: pytest-raisesregexp-2.1.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b54372494fc1f11388b1b9348aeb36b69609699eb8f46e0e010afc733d78236a
|
|
| MD5 |
1371419b645c44e3a98649ab1cd7fb55
|
|
| BLAKE2b-256 |
7a6d983b6c6ba2e06b39d987711c7435f9759c466cdb2625440595663d7dfa63
|
File details
Details for the file pytest_raisesregexp-2.1-py2-none-any.whl.
File metadata
- Download URL: pytest_raisesregexp-2.1-py2-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76ca176a3044ba70292351dfdb65ab0558fac9b0f2de71d3a4048593fd6c7db9
|
|
| MD5 |
3bb9cbf19def2e387713b6d034a06792
|
|
| BLAKE2b-256 |
688b7e721f57645665d5fc652172d83434a62af30ddb06eb41a34f8ec595d8f1
|