Metadata-Version: 2.1
Name: fixturepy
Version: 0.4
Summary: Create random data to be used in tests
Home-page: https://github.com/exentriquesolutions/fixturepy
Author: Exentrique Solutions
Author-email: rs@exentriquesolutions.com
License: MIT
Keywords: UnitTest,Fixture
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing :: Unit
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown
Requires-Dist: pytz
Provides-Extra: test
Requires-Dist: assertpy ; extra == 'test'
Requires-Dist: email-validator ; extra == 'test'

# Python data fixtures

[![Build Status](https://travis-ci.org/exentriquesolutions/fixturepy.svg?branch=master)](https://travis-ci.org/github/exentriquesolutions/fixturepy)

Create data fixtures to use them in  your tests

Sample usage:

    >>> from fixturepy import Fixture, Email

    >>> fixture = Fixture()

    >>> fixture(int) # create an integer
    20932

    >>> fixture(str) # create a string
    '63d0b4e450354948b69f6c3b4f9238f9'

    >>> fixture(Email) # create an email
    'ad34d31609344283bd7ab77922b75e8b@14a8ba0c73a64ffda645cdd4d776757e.com'


