From 508e39e7a3fa835406a17df703b702e06e4e0084 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 3 Feb 2009 23:52:51 -0500 Subject: [PATCH] Removing slow features no longer needed --- spec/fixtures/cucumber.yml | 1 - spec/fixtures/slow/first.feature | 4 ---- spec/fixtures/slow/second.feature | 4 ---- spec/fixtures/step_definitions/sample_steps.rb | 4 ---- 4 files changed, 13 deletions(-) delete mode 100644 spec/fixtures/slow/first.feature delete mode 100644 spec/fixtures/slow/second.feature diff --git a/spec/fixtures/cucumber.yml b/spec/fixtures/cucumber.yml index 05de524..5ce8e3c 100644 --- a/spec/fixtures/cucumber.yml +++ b/spec/fixtures/cucumber.yml @@ -1,3 +1,2 @@ default: . -slow: slow failing: failing.feature \ No newline at end of file diff --git a/spec/fixtures/slow/first.feature b/spec/fixtures/slow/first.feature deleted file mode 100644 index 661ac38..0000000 --- a/spec/fixtures/slow/first.feature +++ /dev/null @@ -1,4 +0,0 @@ -Feature: First - - Scenario: First Slow - Given wait 3 seconds \ No newline at end of file diff --git a/spec/fixtures/slow/second.feature b/spec/fixtures/slow/second.feature deleted file mode 100644 index 18b2e25..0000000 --- a/spec/fixtures/slow/second.feature +++ /dev/null @@ -1,4 +0,0 @@ -Feature: Second - - Scenario: Second Slow - Given wait 3 seconds \ No newline at end of file diff --git a/spec/fixtures/step_definitions/sample_steps.rb b/spec/fixtures/step_definitions/sample_steps.rb index 2e42735..fc8577f 100644 --- a/spec/fixtures/step_definitions/sample_steps.rb +++ b/spec/fixtures/step_definitions/sample_steps.rb @@ -8,7 +8,3 @@ Given /^undefined$/ do pending end - -Given /^wait (\d) seconds?$/ do |time| - sleep time.to_i -end