Metadata-Version: 2.1
Name: django-basetestcase
Version: 0.0.2
Summary: A collection of cheater methods for the Django TestCase.
Home-page: https://github.com/spleeding1/django-basetestcase
Author: Carl Brubaker
Author-email: spleeding@juno.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

BaseTestCase
============

BaseTestCase is a collection of cheater methods for the Django TestCase.
These came about as a result of learning and using TDD.

There are four different classes:

    1. ModelTestCase
    2. FormTestCase
    3. ViewTestCase
    4. FunctionalTestCase
        - For use with Selenium.
        - Origins and some methods from "Obey The Testing Goat".


Quick start
-----------

Import into test and use:

    from django-BaseTestCase import ModelTestCase

    class ModelTest(ModelTestCase):

        ...

