Metadata-Version: 1.1
Name: pytest-twisted
Version: 1.0
Summary: A twisted plugin for py.test.
Home-page: https://github.com/schmir/pytest-twisted
Author: Ralf Schmitt
Author-email: ralf@brainbot.com
License: UNKNOWN
Description: .. -*- mode: rst; coding: utf-8 -*-
        
        ==============================================================================
        pytest-twisted - test twisted code with pytest
        ==============================================================================
        
        
        :Authors: Ralf Schmitt <ralf@systemexit.de>
        :Version: 1.0
        :Date:    2012-10-21
        
        
        pytest-twisted is a plugin for pytest, which allows to test code,
        which uses the twisted framework. test functions can return Deferred
        objects and pytest will wait for their completion with this plugin.
        
        Installation
        ==================
        Install the plugin with::
        
            pip install pytest-twisted
        
        
        Using the plugin
        ==================
        
        The plugin must be enabled. This can be done in the following ways:
        
        1. Run py.test with the --twisted command line option
        
        2. Put the following into conftest.py::
        
            pytest_plugins = "pytest_twisted"
        
        3. Put the following into pytest.ini::
        
            [pytest]
            twisted = 1
        
        That's all.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
