PyTest Helpers Namespace
Project description
This plugin does not provide any helpers to pytest, it does, however, provide a helpers namespace in pytest which enables you to register helper functions in your conftest.py to be used within your tests without having to import them.
Features
Provides a helpers pytest namespace which can be used to register helper functions without requiring you to import them on your actual tests to use them.
Requirements
None!
Installation
You can install “pytest-helpers-namespace” via pip from PyPI:
$ pip install pytest-helpers-namespace
Usage
Consider the following conftest.py file:
pytest_plugins = ['helpers_namespace']
import pytest
@pytest.helpers.register
def foo(bar):
'''
this dumb helper function will just return what you pass to it
'''
return bar
And now consider the following test case:
def test_helper_namespace():
assert pytest.helpers.foo(True) is True
Pretty simple right?!
You can even nest namespaces. Consider the following conftest.py file:
pytest_plugins = ['helpers_namespace']
import pytest
@pytest.helpers.can.haz.register
def foo(bar):
'''
this dumb helper function will just return what you pass to it
'''
return bar
And now consider the following test case:
def test_helper_namespace():
assert pytest.helpers.can.haz.foo(True) is True
Contributing
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
License
Distributed under the terms of the Apache Software License 2.0 license, “pytest-helpers-namespace” is free and open source software.
Issues
If you encounter any problems, please file an issue along with a detailed description.
Changelog
v2016.4.15
v2016.4.5
Use a wrapper class instead of adding an attribute to a function.
v2016.4.3
Provide proper errors when helper functions or namespaces are being overridden. #1
v2016.3.2
First working release
This Pytest plugin was generated with Cookiecutter along with @hackebrot’s Cookiecutter-pytest-plugin template.
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
File details
Details for the file pytest-helpers-namespace-2016.4.15.tar.gz
.
File metadata
- Download URL: pytest-helpers-namespace-2016.4.15.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0d83bbe92e1d3fbe381fee1ac9f1d98da0f1e14b0b70febdad987c6380aa9ec0 |
|
MD5 | 028a036f0a5c961fa56b60b8e2bcae97 |
|
BLAKE2b-256 | d5419a5e939aff20bf5f5d609a6581227318f34e5c63334048ddd7ef381237b5 |
File details
Details for the file pytest_helpers_namespace-2016.4.15-py2.py3-none-any.whl
.
File metadata
- Download URL: pytest_helpers_namespace-2016.4.15-py2.py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ec57901d42156061bbc8445079347d5b88d63d537714eda34f8308e3f2c8af9 |
|
MD5 | 1555345c03c6f20605bacc7056b38338 |
|
BLAKE2b-256 | 0c2972553d6b7ae84ad410dbea11e264f40a1c5af782fa6ec03a42c3c9d58d28 |