From 9a6fca87ffdce53fe0b08c8f2b058fa168ae33bc Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Wed, 2 Feb 2011 11:13:59 -0800 Subject: [PATCH] Re-enable running a single cucumber feature on the command line --- lib/tasks/cucumber.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/cucumber.rake b/lib/tasks/cucumber.rake index 244b948c2..c3f358d77 100644 --- a/lib/tasks/cucumber.rake +++ b/lib/tasks/cucumber.rake @@ -18,7 +18,7 @@ begin t.binary = vendored_cucumber_bin # If nil, the gem's binary is used. t.fork = true # You may get faster startup if you set this to false t.profile = 'default' - t.cucumber_opts = "features --exclude features/uri-tests/*" + t.cucumber_opts = "--exclude features/uri-tests/*" end Cucumber::Rake::Task.new(:wip, 'Run features that are being worked on') do |t|