.. image:: https://github.com/behave/behave/actions/workflows/tests.yml/badge.svg
:target: https://github.com/behave/behave/actions/workflows/tests.yml
:alt: CI Build Status
.. image:: https://readthedocs.org/projects/behave/badge/?version=latest
:target: http://behave.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://img.shields.io/pypi/v/behave.svg
:target: https://pypi.python.org/pypi/behave
:alt: Latest Version
.. image:: https://img.shields.io/pypi/l/behave.svg
:target: https://pypi.python.org/pypi/behave/
:alt: License
.. image:: https://badges.gitter.im/Join%20Chat.svg
:alt: Join the chat at https://gitter.im/behave/behave
:target: https://gitter.im/behave/behave?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
.. |logo| image:: https://raw.github.com/behave/behave/master/docs/_static/behave_logo1.png
behavecrackle is behavior-driven development, Python style.
Behave carckle is form the original behave modified according to crackle needs
|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:
.. code-block:: gherkin
# -- 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:
.. code-block:: python
# -- 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:
.. code-block:: console
$ 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.
.. _`Install *behave*.`: http://behave.readthedocs.io/en/stable/install.html
.. _`tutorial`: http://behave.readthedocs.io/en/stable/tutorial.html#features
.. _`feature testing language`: http://behave.readthedocs.io/en/stable/gherkin.html
.. _`api`: http://behave.readthedocs.io/en/stable/api.html
More Information
-------------------------------------------------------------------------------
* `behave documentation`_: `latest edition`_, `stable edition`_, `PDF`_
* `behave.example`_: Behave Examples and Tutorials (docs, executable examples).
* `changelog`_ (latest changes)
.. _behave documentation: http://behave.readthedocs.io/
.. _changelog: https://github.com/behave/behave/blob/master/CHANGES.rst
.. _behave.example: https://github.com/behave/behave.example
.. _`latest edition`: http://behave.readthedocs.io/en/latest/
.. _`stable edition`: http://behave.readthedocs.io/en/stable/
.. _PDF: https://media.readthedocs.org/pdf/behave/latest/behave.pdf
Raw data
{
"_id": null,
"home_page": "http://github.com/behave/behave",
"name": "behavecrackle",
"maintainer": "",
"docs_url": null,
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
"maintainer_email": "",
"keywords": "",
"author": "Jens Engel, Benno Rice and Richard Jones",
"author_email": "behavecrackle-users@googlegroups.com",
"download_url": "https://files.pythonhosted.org/packages/0e/b7/14103c6d9702b66a35dc4ffa7aac63b05185c47b651cef07c27bb32c9860/behavecrackle-1.2.6.2.tar.gz",
"platform": null,
"description": "\n.. image:: https://github.com/behave/behave/actions/workflows/tests.yml/badge.svg\n :target: https://github.com/behave/behave/actions/workflows/tests.yml\n :alt: CI Build Status\n\n.. image:: https://readthedocs.org/projects/behave/badge/?version=latest\n :target: http://behave.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n\n.. image:: https://img.shields.io/pypi/v/behave.svg\n :target: https://pypi.python.org/pypi/behave\n :alt: Latest Version\n\n.. image:: https://img.shields.io/pypi/l/behave.svg\n :target: https://pypi.python.org/pypi/behave/\n :alt: License\n\n.. image:: https://badges.gitter.im/Join%20Chat.svg\n :alt: Join the chat at https://gitter.im/behave/behave\n :target: https://gitter.im/behave/behave?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\n\n.. |logo| image:: https://raw.github.com/behave/behave/master/docs/_static/behave_logo1.png\n\nbehavecrackle is behavior-driven development, Python style.\n\nBehave carckle is form the original behave modified according to crackle needs\n\n|logo|\n\nBehavior-driven development (or BDD) is an agile software development\ntechnique that encourages collaboration between developers, QA and\nnon-technical or business participants in a software project.\n\n*behave* uses tests written in a natural language style, backed up by Python\ncode.\n\nFirst, `install *behave*.`_\n\n\nNow make a directory called \"features/\".\nIn that directory create a file called \"example.feature\" containing:\n\n.. code-block:: gherkin\n\n # -- FILE: features/example.feature\n Feature: Showing off behave\n\n Scenario: Run a simple test\n Given we have behave installed\n When we implement 5 tests\n Then behave will test them for us!\n\nMake a new directory called \"features/steps/\".\nIn that directory create a file called \"example_steps.py\" containing:\n\n.. code-block:: python\n\n # -- FILE: features/steps/example_steps.py\n from behave import given, when, then, step\n\n @given('we have behave installed')\n def step_impl(context):\n pass\n\n @when('we implement {number:d} tests')\n def step_impl(context, number): # -- NOTE: number is converted into integer\n assert number > 1 or number == 0\n context.tests_count = number\n\n @then('behave will test them for us!')\n def step_impl(context):\n assert context.failed is False\n assert context.tests_count >= 0\n\nRun behave:\n\n.. code-block:: console\n\n $ behave\n Feature: Showing off behave # features/example.feature:2\n\n Scenario: Run a simple test # features/example.feature:4\n Given we have behave installed # features/steps/example_steps.py:4\n When we implement 5 tests # features/steps/example_steps.py:8\n Then behave will test them for us! # features/steps/example_steps.py:13\n\n 1 feature passed, 0 failed, 0 skipped\n 1 scenario passed, 0 failed, 0 skipped\n 3 steps passed, 0 failed, 0 skipped, 0 undefined\n\nNow, continue reading to learn how to get the most out of *behave*. To get started,\nwe recommend the `tutorial`_ and then the `feature testing language`_ and\n`api`_ references.\n\n\n.. _`Install *behave*.`: http://behave.readthedocs.io/en/stable/install.html\n.. _`tutorial`: http://behave.readthedocs.io/en/stable/tutorial.html#features\n.. _`feature testing language`: http://behave.readthedocs.io/en/stable/gherkin.html\n.. _`api`: http://behave.readthedocs.io/en/stable/api.html\n\n\nMore Information\n-------------------------------------------------------------------------------\n\n* `behave documentation`_: `latest edition`_, `stable edition`_, `PDF`_\n* `behave.example`_: Behave Examples and Tutorials (docs, executable examples).\n* `changelog`_ (latest changes)\n\n\n.. _behave documentation: http://behave.readthedocs.io/\n.. _changelog: https://github.com/behave/behave/blob/master/CHANGES.rst\n.. _behave.example: https://github.com/behave/behave.example\n\n.. _`latest edition`: http://behave.readthedocs.io/en/latest/\n.. _`stable edition`: http://behave.readthedocs.io/en/stable/\n.. _PDF: https://media.readthedocs.org/pdf/behave/latest/behave.pdf\n\n\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "behavecrackle is behaviour-driven development, Python style",
"version": "1.2.6.2",
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "32774048bd7573225ff75e90e13cac957a4ed59aae82536dea27176d51bb7a2e",
"md5": "2ba59c437353fbf3fac4bd3e2eb13351",
"sha256": "b866003f1f7d70d5447c0b10ba4fd4bbfd5454171fe4057e8a683a9bdd3bd5de"
},
"downloads": -1,
"filename": "behavecrackle-1.2.6.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2ba59c437353fbf3fac4bd3e2eb13351",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
"size": 171734,
"upload_time": "2023-04-16T03:10:06",
"upload_time_iso_8601": "2023-04-16T03:10:06.003288Z",
"url": "https://files.pythonhosted.org/packages/32/77/4048bd7573225ff75e90e13cac957a4ed59aae82536dea27176d51bb7a2e/behavecrackle-1.2.6.2-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0eb714103c6d9702b66a35dc4ffa7aac63b05185c47b651cef07c27bb32c9860",
"md5": "3a05fdab71b1a742490e7b9846e1f9eb",
"sha256": "73a012f4880786c59fe67114c87497b4431de6b0d2001ae17791d5992c5f164e"
},
"downloads": -1,
"filename": "behavecrackle-1.2.6.2.tar.gz",
"has_sig": false,
"md5_digest": "3a05fdab71b1a742490e7b9846e1f9eb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*",
"size": 755646,
"upload_time": "2023-04-16T03:10:08",
"upload_time_iso_8601": "2023-04-16T03:10:08.818453Z",
"url": "https://files.pythonhosted.org/packages/0e/b7/14103c6d9702b66a35dc4ffa7aac63b05185c47b651cef07c27bb32c9860/behavecrackle-1.2.6.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-04-16 03:10:08",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "behave",
"github_project": "behave",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"tox": true,
"lcname": "behavecrackle"
}