Skip to main content

PyTest Helpers Namespace

Project description

See Build Status on Travis CI See Build Status on AppVeyor

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.


This Pytest plugin was generated with Cookiecutter along with @hackebrot’s Cookiecutter-pytest-plugin template.

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.

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.2.tar.gz (3.9 kB view details)

Uploaded Source

Built Distribution

pytest_helpers_namespace-2016.4.2-py2.py3-none-any.whl (6.4 kB view details)

Uploaded Python 2 Python 3

File details

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

File metadata

File hashes

Hashes for pytest-helpers-namespace-2016.4.2.tar.gz
Algorithm Hash digest
SHA256 1904119db9599b10701e46836d983ef13f4f2d7d7463f467828e49f15f9d6dcb
MD5 72cf3ad71dc4fe9de5fb399d3f7d7be7
BLAKE2b-256 89cee44256f5166cefa79fd60fcbb4d6e3fc7553c3e0fe0f50ba8bf5a894f400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pytest_helpers_namespace-2016.4.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d361dc03db70efc4e03bbf10c587501a42776c8ac418ff49e443a42ea331ecd9
MD5 a3ecac5b2ccdc90a1d5610963472b1a3
BLAKE2b-256 d8546a544af692eb8547efc861e2d42fc87d00952eb0446944e7d7fd1d97795f

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