Skip to content

Commit

Permalink
Mark a failing feature as WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
benlangfeld committed Nov 4, 2011
1 parent ac310e0 commit 91c4696
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ require 'cucumber'
require 'cucumber/rake/task'
require 'ci/reporter/rake/cucumber'
Cucumber::Rake::Task.new(:features) do |t|
t.cucumber_opts = "features --format pretty"
t.cucumber_opts = %w{--tags ~@jruby} unless defined?(JRUBY_VERSION)
end

Cucumber::Rake::Task.new(:wip) do |t|
t.cucumber_opts = %w{-p wip}
end

task :default => [:ragel, :spec, :features]
Expand Down
2 changes: 2 additions & 0 deletions cucumber.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
default: --tags ~@wip
wip: --wip --tags @wip
1 change: 1 addition & 0 deletions features/lexer.feature
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ Feature: Lexing AMI
And 1 message should have been received
And the 'follows' body of 1 message received should equal with_colon_after_first_line

@wip
Scenario: Lexing an immediate response with a colon in it.
Given a new lexer
And an immediate response with text "markq has 0 calls (max unlimited) in 'ringall' strategy (0s holdtime), W:0, C:0, A:0, SL:0.0% within 0s\r\n No Members\r\n No Callers\r\n\r\n\r\n\r\n"
Expand Down

0 comments on commit 91c4696

Please sign in to comment.