Socket
Socket
Sign inDemoInstall

pytest-faker

Package Overview
Dependencies
0
Maintainers
4
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    pytest-faker

Faker integration with the pytest framework.


Maintainers
4

Readme

Faker_ integration with the pytest_ test runner

.. image:: http://img.shields.io/travis/pytest-dev/pytest-faker.svg :target: https://travis-ci.org/pytest-dev/pytest-faker .. image:: https://img.shields.io/pypi/pyversions/pytest-qt.svg :target: https://pypi.python.org/pypi/pytest-qt/
.. image:: http://img.shields.io/pypi/v/pytest-faker.svg :target: https://pypi.python.org/pypi/pytest-faker .. image:: http://img.shields.io/coveralls/pytest-dev/pytest-faker.svg :target: https://coveralls.io/r/pytest-dev/pytest-faker .. image:: https://readthedocs.org/projects/pytest-faker/badge/?version=latest :target: https://readthedocs.org/projects/pytest-faker/?badge=latest :alt: Documentation Status

pytest-faker adds Faker fixtures_ for easy use of Faker_ for your tests under pytest_ runner.

.. _Faker: https://faker.readthedocs.io/ .. _pytest: http://pytest.org/ .. _fixtures: https://pytest.org/latest/fixture.html

Install pytest-faker

::

pip install pytest-faker

Example

An example of Faker_ and pytest_ integration.

tests/test_faker.py:

.. code-block:: python

from faker.generator import Generator

def test_faker(faker):
    """Faker factory is a fixture."""
    assert isinstance(faker, Generator)
    assert isinstance(faker.name(), str)

License

This software is licensed under the MIT license <http://en.wikipedia.org/wiki/MIT_License>_.

© 2015 Anatoly Bubenkov, Oleg Pidsadnyi and others

Authors

Anatoly Bubenkov <bubenkoff@gmail.com>_ original idea and implementation

These people have contributed to pytest-faker, in alphabetical order:

  • Jeff Widman <jeff@jeffwidman.com>_
  • Oleg Pidsadnyi <oleg.pidsadnyi@gmail.com>_

Changelog

2.0.0

  • Switch to a recent Faker (jeffwidman, bubenkoff)

1.1.0

  • Switch to a session scoped fixture (bubenkoff, thedrow)

1.0.0

  • initial release (bubenkoff)

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc