Metadata-Version: 2.1
Name: fixturepy
Version: 0.1
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
Description: # 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
            >>> fixture = Fixture()
            >>> fixture.create(int) # create an integer
            20932
            >>> fixture.create(str) # create a string
            '63d0b4e450354948b69f6c3b4f9238f9'
         
        
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.4
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
Provides-Extra: test
