Metadata-Version: 1.1
Name: rebecca.testing
Version: 0.1
Summary: UNKNOWN
Home-page: https://github.com/rebeccaframework/rebecca.testing
Author: Atsushi Odagiri
Author-email: aodagx@gmail.com
License: MIT
Description: .. contents::
        
        .. image:: https://travis-ci.org/rebeccaframework/rebecca.testing.png?branch=master
           :target: https://travis-ci.org/rebeccaframework/rebecca.testing
        
        Getting Started
        ===================
        
        rebecca.testing provides test fixtures for `pyramid <http://www.pylonsproject.org>`_ application using `pytest <http://pytest.org>`_.
        
        install
        ------------------
        
        install with pip basically::
        
          $ pip install rebecca.testing
        
        
        Usage
        =====================
        
        config fixture
        -------------------------
        
        config fixture provides dummy config with automatic setup and teardown::
        
          from pyramid import testing
          from rebecca.testing import config
        
          def test_it(config):
              config.include('your.app')
              from your.app.views import ClassUnderTheTest
              request = testing.DummyRequest()
              result = ClassUnserTheTest(request)
        
        
        Contributors
        ============
        
        - Atsushi Odagiri, Original Author
        
        
        Changelog
        =========
        
        0.1 (2013-08-28)
        --------------------
        
        - first release
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
