Skip to content

Instantly share code, notes, and snippets.

Created November 12, 2015 17:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/c362127306503c57f98f to your computer and use it in GitHub Desktop.
Save anonymous/c362127306503c57f98f to your computer and use it in GitHub Desktop.
cucumber features/test.feature
Feature: lower case palindromes
This is testing the input of lower case strings
that may be palindromes
Scenario: testing lowercase # features/test.feature:5
Given isPalindrome is run # features/test.rb:1
undefined local variable or method `isPalindrome' for #<Object:0x007f8a5a2da4b0> (NameError)
./features/test.rb:2:in `/^isPalindrome is run$/'
features/test.feature:6:in `Given isPalindrome is run'
When the input string is "oofoo" # features/test.rb:5
Then the result should be "palindrome" # features/test.rb:9
Failing Scenarios:
cucumber features/test.feature:5 # Scenario: testing lowercase
1 scenario (1 failed)
3 steps (1 failed, 2 skipped)
0m0.046s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment