Metadata-Version: 1.1
Name: django-smarttest
Version: 0.1.0
Summary: Code snippets which help writing automated tests for Django.
Home-page: http://kidosoft.pl
Author: Jakub STOLARSKI (Dryobates)
Author-email: jakub.stolarski@kidosoft.pl
License: beerware
Description: #########
        Smarttest
        #########
        
        .. image:: https://pypip.in/wheel/django-smarttest/badge.svg
            :target: https://pypi.python.org/pypi/django-smarttest/
            :alt: Wheel Status
        
        .. image:: https://pypip.in/version/django-smarttest/badge.svg
            :target: https://pypi.python.org/pypi/django-smarttest/
            :alt: Latest Version
        
        .. image:: https://pypip.in/license/django-smarttest/badge.svg
            :target: https://pypi.python.org/pypi/django-smarttest/
            :alt: License
        
        
        Goal
        ====
        
        Provide code snippets which help running tests in Django.
        
        Installation
        ============
        
        Install requirements:
        
        .. code-block:: console
            
            pip install -r requirements.txt
        
        Install Smarttest:
        
        .. code-block:: console
        
           pip install django-smarttest
        
        or current development version:
        
        .. code-block:: console
        
           pip install hg+https:://bitbucket.org/kidosoft/django-smarttest
        
        Configuration
        =============
        
        .. code-block:: python
        
           INSTALLED_APPS =  [
            ...
            'smarttest',
            ...
           ]
        
        Usage
        =====
        
        Preventing tests from touching database
        ---------------------------------------
        
        .. code-block:: python
        
           import unittest
        
           from smarttest.decorators import no_db_testcase
        
           @no_db_testcase
           class SomeTestCase(unittest.TestCase):
        
                def test_some_test(self):
                    ...
        
        If you'll accidentally write code that tries to run some query on database
        you'll get exception.
        
        Running only selected test types
        --------------------------------
        
        .. code-block:: python
        
           import unittest
        
           from smarttest.decorators import test_type
        
           @test_type('acceptance')
           class SomeAcceptanceTestCase(unittest.TestCase):
        
                def test_some_acceptance_test(self):
                    ...
        
           @test_type('unit')
           class SomeUnitTestCase(unittest.TestCase):
        
                def test_some_unit_test(self):
                    ...
        
           class UnspecifiedTypeTestCase(unittest.TestCase):
        
                def test_some_test(self):
                    ...
        
        .. code-block:: python
        
           $ python -m unittest script
           ...
           ----------------------------------------------------------------------
           Ran 3 tests in 0.000s
        
           OK
           $ IGNORE_TESTS=unit python -m unittest script 
           .s.
           ----------------------------------------------------------------------
           Ran 3 tests in 0.000s
        
           OK (skipped=1)
           $ IGNORE_TESTS=acceptance python -m unittest script 
           s..
           ----------------------------------------------------------------------
           Ran 3 tests in 0.000s
        
           OK (skipped=1)
           $ IGNORE_TESTS=acceptance,unit python -m unittest script 
           ss.
           ----------------------------------------------------------------------
           Ran 3 tests in 0.000s
        
           OK (skipped=2)
        
        
        Test type can be any selected word. It doesn't have to be "unit" or "acceptance". You can have different test types for running in different environments if you need.
        
        
        Supported Django versions
        =========================
        
        Tested with: 
        
        * Django 1.2.7 on python2.7
        * Django 1.3.7 on python2.7
        * Django 1.4.16 on python2.7
        * Django 1.5.11 on python2.7, python3.2, python3.3, python3.4
        * Django 1.6.8 on python2.7, python3.2, python3.3, python3.4
        * Django 1.7.1 on python2.7, python3.2, python3.3, python3.4
        
Keywords: django testing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Django
Classifier: Programming Language :: Python
Classifier: Topic :: Utilities
