Created
March 16, 2010 16:33
-
-
Save joshski/334186 to your computer and use it in GitHub Desktop.
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
> cucumber --version | |
0.6.3 | |
Scenario Outline: Incorrect Search Output | |
When I do an invalid search of: "<keywords>" | |
Then an invalid search result page of "<response>" should not be returned! | |
Examples: | |
| keywords | response | | |
| &^*%$ü%! |'&^*%$%!' could not be interpreted. Please correct the construction and try again. | | |
Then /^an invalid search result page of "([^\"]*)" should not be returned!$/ do |error_message| | |
jquery("div.panel-error.big.content").text.should_not include(error_message) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment