Sha256: f89ccb25466ad214be6442971fc2c60839501ea2ec355cae1709832362388cc4
Contents?: true
Size: 975 Bytes
Versions: 1
Compression:
Stored size: 975 Bytes
Contents
# -*- coding: UTF-8 -*- """behave is behaviour-driven development, Python style Behavior-driven development (or BDD) is an agile software development technique that encourages collaboration between developers, QA and non-technical or business participants in a software project. *behave* uses tests written in a natural language style, backed up by Python code. To get started, we recommend the `tutorial`_ and then the `test language`_ and `api`_ references. .. _`tutorial`: tutorial.html .. _`test language`: gherkin.html .. _`api`: api.html """ from __future__ import absolute_import from behave.step_registry import * # pylint: disable=wildcard-import from behave.matchers import use_step_matcher, step_matcher, register_type # pylint: disable=undefined-all-variable __all__ = [ "given", "when", "then", "step", "use_step_matcher", "register_type", "Given", "When", "Then", "Step", # -- DEPRECATING: "step_matcher" ] __version__ = '1.2.6.dev0'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
busser-behave-0.1.3 | vendor/behave/behave/__init__.py |