예제 #1
0
    def setUp(self):
        decorator = _step('the_name')

        @decorator
        def this_function_is_named_with_underscores():
            pass

        self.decorated = this_function_is_named_with_underscores
예제 #2
0
파일: __init__.py 프로젝트: hfeeki/pyspecs
from pyspecs._steps import _step, _skip
from pyspecs import _steps
from pyspecs._should import Should as _Should

__version__ = "1.1.4"

this = the = that = it = then_ = _Should

given = _step(_steps.GIVEN_STEP)
when = _step(_steps.WHEN_STEP)
collect = _step(_steps.COLLECT_STEP)
then = _step(_steps.THEN_STEP)
after = _step(_steps.AFTER_STEP)
skip = _skip


class spec(object):
    """
    Subclass your spec classes from this class to identify them as specs.
    """