Metadata-Version: 2.4
Name: django-fuzzytest
Version: 0.1.0
Summary: This is the automatic Fuzzy Test tool for testing Django applications.
Home-page: https://github.com/creotiv/django-fuzzytest
Download-URL: https://github.com/creotiv/django-fuzzytest/tarball/0.1.0
Author: Andrey Nikishaev
Author-email: creotiv@gmail.com
License: BSD
Keywords: testing,django,fuzzy
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries :: Python Modules
License-File: LICENSE
Requires-Dist: django>=1.6
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

==============================
Django Fuzzy Test
==============================

This is the automatic Fuzzy Test tool for testing Django applications.
It generates url and params map based on your activity on dev server and then use it to fuzzy test your application.

How to use
^^^^^^^^^^

Add to installed applications
    INSTALLED_APPS += ('django_fuzzytest',)

Run fuzzyserver to collect url and params cache:
    python manage.py fuzzyserver --cache=.fuzzycache

After data was collected you can start testing:
    python manage.py fuzzytest --cache=.fuzzycache

Here's a screenshot of the panel in action:

.. image:: https://raw.github.com/creotiv/django-fuzzytest/master/example.png
   :width: 1214
   :height: 747



