lettuce
lettuce copied to clipboard
Behavior-driven-development tool for python, inspired by Cucumber for Ruby ⛺
`options.no_color` is not passed to `Runner` in `bin.py`. Therefore `lettuce --no-color` will still use the colorized output.
the last demo in the [lettuce tutorial](http://lettuce.it/tutorial/simple.html#tutorial-simple) has an IndentationError ``` def have_the_number(self, step, number): '''I have the number (\d+)''' self.set_number(number) ```
###### Feature file: ``` gherkin Feature: Lettuce tags @include_tag @exclude_tag Scenario: This test should be skipped Given a test Then this test is not run @include_tag Scenario: This test should...
The following example throws the exception: ``` Feature: Prompt to Signup Background: Given background for story HUBPHE-22 And I am in viewing on desktop And I am a new Customer...
I am learning lettuce, and find keywords to define my features include: - Given - When - Then - And - Feature: - Background: - Scenario: - Scenario Outline: and...
Hi, I wanted to know if a [fix of mine, merged on august 14](https://github.com/gabrielfalcao/lettuce/pull/445) was in the version available with pip (0.2.20). Please where can I find this information? Thanks.
Whenever I run python manage.py harvest, I receive a traceback call as depicted ``` Traceback (most recent call last): File "/home/xxxx/programming/apps/xxxxx/sipi/src/lettuce/lettuce/django/management/commands/harvest.py", line 185, in handle result = runner.run() File "/home/xxxxx/programming/apps/xxxx/sipi/src/lettuce/lettuce/__init__.py",...
I think many will agree that Lettuce needs another maintainer. I'm willing to give write permissions to this repository for someone who: - Is commited with unit, functional and integration...
There is some issue with loading django_url variable from letttuce.django. When the function is implemented like in documentation: ``` from lettuce import step, world from lettuce.django import django_url @step(r'I log...