lettuce
lettuce copied to clipboard
Behavior-driven-development tool for python, inspired by Cucumber for Ruby ⛺
I was using lettuce without a problem, until installing django-celery. Now it doesn't even run spiting the following error: ``` Traceback (most recent call last): File "/Users/pedro/.virtualenvs/mobile-mgmt/src/lettuce/lettuce/registry.py", line 135, in...
To replicate: 1. set up the minimal scenario outline example as described here: http://lettuce.it/tutorial/scenario-outlines.html 2. run `lettuce --with-xunit --xunit-file=report.xml` 3. inspect `report.xml`. note that the `` element has `tests="15"` but...
This is a tracking bug for the new Lettuce parser I've been working on. https://github.com/infoxchange/lettuce/tree/new-parser This branch includes: - rebuild of the parser using pyparsing - rebuild of the lettuce...
Just before I run a step I'm loading a fixture with `call_command('loaddata', 'my_app/initial_data.json')` that sets up a second site entry in the `Site` model: ``` @step(u'I go to the URL...
Currently, lettuce doesn't capture stdout/stderr when running tests. I think it would be nice to do so.
Maybe just for `step` there can be a wildcard character `*` (or maybe a different token, like `__`), that the `step` function will simply replace with `"(.*)"` for all intents...
Either step.hashes list and its contents (each dict) must be immutable, as for if the developer put some non-string value in the dictionary, lettuce will get crazy when trying to...
Just ran into an issue where a behave_as was failing and it took me a bit to notice I had defined a step "log in as" but I had referenced...
For example:: ``` @some_tag Feature: Test tags Scenario: Test it Step 1 Scenario: Only feature tag Step 1 @something_else Scenario: Test it with something else Step 1 ``` Will result...
I'm really enjoying lettuce. I'm using it to test a hypermedia API project built with Flask. The integration has been very smooth. However, I'm wondering if there is some way...