Skip to main content

PyTest Helpers Namespace

Project description

See Build Status on Travis CI See Build Status on AppVeyor http://img.shields.io/pypi/v/pytest-helpers-namespace.svg

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

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.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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-helpers-namespace-2016.4.3.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

pytest_helpers_namespace-2016.4.3-py2.py3-none-any.whl (7.1 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pytest-helpers-namespace-2016.4.3.tar.gz.

File metadata

File hashes

Hashes for pytest-helpers-namespace-2016.4.3.tar.gz
Algorithm Hash digest
SHA256 d421541a77ee4ff3de268860cad0c497c1a31a12ff94ade0970b7454fce37316
MD5 a52ee5fe6951277ffb2193d4467561f8
BLAKE2b-256 a116b6cdfc7421489e08cfe63b6eb7e6bac4e818f6bef851f4fdc36a67d26047

See more details on using hashes here.

File details

Details for the file pytest_helpers_namespace-2016.4.3-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_helpers_namespace-2016.4.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f71eff8f7a8233a49fc61bf71b10853e66d1095b038ca9d70b1bf6d9ce4ca419
MD5 babc3935794a79f6dea227aabca7cde5
BLAKE2b-256 dc0b94c95ebd413a42f2cca9afdeb04c8ce40e7b8221a0b40442aff1c2c3967d

See more details on using hashes here.

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