-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
32 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'crudecumber' | ||
s.version = '0.1.5' | ||
s.date = '2015-06-21' | ||
s.summary = 'Crudecumber 0.1.5' | ||
s.version = '0.2.0' | ||
s.date = Date.today.to_s | ||
s.summary = 'Crudecumber 0.2.0' | ||
s.description = "Manually run through your Cucumber scenarios.\n | ||
Run exactly as you would run Cucumber but instead use \'crudecumber\' followed | ||
by your usual arguments." | ||
s.author = ['Dan Buckland'] | ||
s.email = '[email protected]' | ||
s.email = '[email protected]' | ||
s.files = Dir['lib/**/**/*'] + Dir['bin/*'] | ||
s.homepage = 'https://github.com/danbuckland/crudecumber' | ||
s.homepage = 'http://crudecumber.xyz' | ||
s.license = 'MIT' | ||
s.platform = Gem::Platform::RUBY | ||
s.required_ruby_version = '>= 1.9.3' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Feature: Running any scenarios with backgrounds using the Crudecumber gem | ||
|
||
Running version 0.1.5 of Crudecumber with scenarios that have background steps | ||
can cause the background step to remain visible when the first scenario step | ||
is run. This only happens when the last background step is longer than the | ||
first scenario step. | ||
|
||
Background: Precede scenario with long background step | ||
Given I have a rather verbose and therefore lengthy first background step | ||
And I have a long second step that's not quite as long as the first one | ||
|
||
@bugs @7 | ||
Scenario: Scenario steps should not overlap last background step | ||
When I start a scenario with a short step | ||
Then I should not see the background step behind | ||
|
||
@bugs @7 | ||
Scenario: Scenario steps should not overlap last background step | ||
When I start a different scenario | ||
And that scenario also has a short first step | ||
Then I should not see the background step behind |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters