Skip to main content

this project update behave with job_language parameter, and behave is behaviour-driven development, Python style

Project description

Travis CI Build Status Documentation Status Latest Version Downloads License Join the chat at https://gitter.im/behave/behave

This project add one parameter –job_language or job_language in enviroment.py file to filter steps [AAA/BBB] format. It bases on behave 1.2.6 version.

behave is behavior-driven development, Python style.

logo

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.

First, install *behave*.

Now make a directory called “features/”. In that directory create a file called “example.feature” containing:

# -- FILE: features/example.feature
Feature: Showing off behave

  Scenario: Run a simple test
    Given we have behave installed
     When we implement 5 tests
     Then behave will test them for us!

Make a new directory called “features/steps/”. In that directory create a file called “example_steps.py” containing:

# -- FILE: features/steps/example_steps.py
from behave import given, when, then, step

@given('we have behave installed')
def step_impl(context):
    pass

@when('we implement {number:d} tests')
def step_impl(context, number):  # -- NOTE: number is converted into integer
    assert number > 1 or number == 0
    context.tests_count = number

@then('behave will test them for us!')
def step_impl(context):
    assert context.failed is False
    assert context.tests_count >= 0

Run behave:

$ behave
Feature: Showing off behave # features/example.feature:2

  Scenario: Run a simple test          # features/example.feature:4
    Given we have behave installed     # features/steps/example_steps.py:4
    When we implement 5 tests          # features/steps/example_steps.py:8
    Then behave will test them for us! # features/steps/example_steps.py:13

1 feature passed, 0 failed, 0 skipped
1 scenario passed, 0 failed, 0 skipped
3 steps passed, 0 failed, 0 skipped, 0 undefined

Now, continue reading to learn how to get the most out of behave. To get started, we recommend the tutorial and then the feature testing language and api references.

More Information

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

behave_plus-0.0.4.tar.gz (745.7 kB view details)

Uploaded Source

Built Distribution

behave_plus-0.0.4-py2.py3-none-any.whl (135.4 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file behave_plus-0.0.4.tar.gz.

File metadata

  • Download URL: behave_plus-0.0.4.tar.gz
  • Upload date:
  • Size: 745.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.4

File hashes

Hashes for behave_plus-0.0.4.tar.gz
Algorithm Hash digest
SHA256 53a4f393f222382273cbb94e572625b4d7f55e877734f75d9f70778cac01eb51
MD5 5a32de503c4114fddb99282165aa5704
BLAKE2b-256 a5430f28c02d05f9a529a391fa4a71a993962b8d4b90a040e74b497a0cc182f4

See more details on using hashes here.

File details

Details for the file behave_plus-0.0.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for behave_plus-0.0.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 5083aa62f33b5ac5d9136d691e6b8964ed5fdb7dcb4699164775abf60803ee31
MD5 854ae4447179e35c6b687aad139c5b0a
BLAKE2b-256 c381281add584c00a93276735b62c096b259c08cbc09c50de25fd7dbbe5b9f8e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page