cuke profiles for running @todo or @bug tests

This commit is contained in:
Emil Tin 2013-09-05 19:18:04 +02:00
parent dc920a7e39
commit c9e40d3e59
2 changed files with 4 additions and 25 deletions

View File

@ -1,6 +1,8 @@
# config/cucumber.yml
##YAML Template
---
default: --require features --tags ~@todo --tag ~@stress
verify: --require features --tags ~@todo --tag ~@stress -f progress
default: --require features --tags ~@todo --tags ~@bug --tag ~@stress
verify: --require features --tags ~@todo --tags ~@bug --tag ~@stress -f progress
bugs: --require features --tags @bug
todo: --require features --tags @todo
all: --require features

View File

@ -1,23 +0,0 @@
@routing @testbot @bug @todo
Feature: Testbot - Things that looks like bugs
Background:
Given the profile "testbot"
Scenario: Testbot - Triangle problem
Given the node map
| | | | d |
| a | b | c | |
| | | | e |
And the ways
| nodes | highway | oneway |
| abc | primary | |
| cd | primary | yes |
| ce | river | |
| de | primary | |
When I route I should get
| from | to | route |
| d | c | de,ce |
| e | d | de |