Metadata-Version: 1.1
Name: django-fake-model
Version: 0.1.2
Summary: Simple library for creating fake models in the unit tests.
Home-page: https://github.com/erm0l0v/django-fake-model
Author: Kirill Ermolov
Author-email: erm0l0v@ya.ru
License: BSD
Description: =============================
        django-fake-model
        =============================
        
        .. image:: https://badge.fury.io/py/django-fake-model.png
            :target: https://badge.fury.io/py/django-fake-model
        
        .. image:: https://travis-ci.org/erm0l0v/django-fake-model.png?branch=master
            :target: https://travis-ci.org/erm0l0v/django-fake-model
        
        .. image:: https://landscape.io/github/erm0l0v/django-fake-model/master/landscape.svg?style=flat
           :target: https://landscape.io/github/erm0l0v/django-fake-model/master
           :alt: Code Health
           
        .. image:: https://api.codacy.com/project/badge/235f71efbf3144178975bb3eb86964c8
            :target: https://www.codacy.com/app/erm0l0v/django-fake-model
        
        .. image:: https://requires.io/github/erm0l0v/django-fake-model/requirements.svg?branch=master
             :target: https://requires.io/github/erm0l0v/django-fake-model/requirements/?branch=master
             :alt: Requirements Status
             
        Simple library for creating fake models in the unit tests.
        
        This simple library allows to create fake models in your test without migrations, test apps and test tables in your base. All tables that you need will created/removed during the test.
        
        Install
        -------
        
        Install django-fake-model::
        
            pip install django-fake-model
        
        Quickstart
        ----------
        
        Just create a model in any file (Ex: in your test) and add decorator **@YourModel.fake_me** to test method or test class.
        
        .. code:: python
        
            from django_fake_model import models as f
            from django.db import models
            from django.test import TestCase
            
            
            class MyFakeModel(f.FakeModel):
        
                name = models.CharField(max_length=100)
            
            
            @MyFakeModel.fake_me
            class MyFakeModelTests(TestCase):
        
                def test_create_model(self):
                    MyFakeModel.objects.create(name='123')
                    model = MyFakeModel.objects.get(name='123')
                    self.assertEqual(model.name, '123')
            
            
            class MyFakeModelFunctionTest(TestCase):
        
                @MyFakeModel.fake_me
                def test_create_model(self):
                    MyFakeModel.objects.create(name='123')
                    model = MyFakeModel.objects.get(name='123')
                    self.assertEqual(model.name, '123')
        
        TODO:
        -----
        
        * fix class decorator **@YourModel.fake_me** for nose tests
        
        Cookiecutter Tools Used in Making This Package
        ----------------------------------------------
        
        *  cookiecutter
        *  cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2015-09-16)
        ++++++++++++++++++
        
        * First release on PyPI.
        
        
        0.1.1 (2015-09-28)
        ++++++++++++++++++
        
        * Added tests with different databases.
        
        
        0.1.2 (2015-11-13)
        ++++++++++++++++++
        
        * Added Django 1.9 support
        * Added travis config generator
        * Added nose tests
        * Remove tests for Django master
Keywords: django-fake-model
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
