Current File : //usr/lib/python2.7/site-packages/nose/plugins/collect.pyc |
�
�fPc @ s� d Z d d l m Z d d l m Z d d l Z d d l Z e j e � Z d e f d � � YZ
d d d � � YZ d e j f d
� � YZ d S( s
This plugin bypasses the actual execution of tests, and instead just collects
test names. Fixtures are also bypassed, so running nosetests with the
collection plugin enabled should be very quick.
This plugin is useful in combination with the testid plugin (``--with-id``).
Run both together to get an indexed list of all tests, which will enable you to
run individual tests by index number.
This plugin is also useful for counting tests in a test suite, and making
people watching your demo think all of your tests pass.
i����( t Plugin( t TestNt CollectOnlyc B s5 e Z d Z d Z d Z d � Z d � Z d � Z RS( sB
Collect and output test names only, don't run any tests.
s collect-onlyt collect_onlyc C s? | j d d d d | j d | j d � d d | j � �d S(
s&