On Wed, Nov 16, 2011 at 5:34 PM, Vin MR <li...@ruby-forum.com> wrote:
> I'm new with Ruby and Cucumber.  I've tried this simple test, but it
> didn't work for me
>
> Given ....
> When I enter ABC on keyboard
> Then ...
>
>
> And here is the ruby code
> When /^I enter "([^\"]*) on keyboard$/ do |input|

That RegExp doesn't match your step. This will match:

/^I enter (.*) on keyboard$/

Aslak

> .....
> end
>
>
>
> I always get a complain when executing the test
> "You can implement step definitions for undefined steps with there
> snippets:
>
> When /^I enter ABC on keyboard$/ do
>  pending # express the regexp above with the code you wish you had
> end
> "
>
> And the code above was not executed.
>
>
> Can anyone tell what I've done wrong here?
>
> Thanks.
>
> --
> Posted via http://www.ruby-forum.com/.
> _______________________________________________
> rspec-users mailing list
> rspec-users@rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users
>
_______________________________________________
rspec-users mailing list
rspec-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users

Reply via email to