Re: [rspec-users] newbie cucumber tutorial

2011-11-16 Thread aslak hellesoy
On Wed, Nov 16, 2011 at 5:45 PM, Chris Habgood wrote: > this group is for rspec > The Cucumber list -> http://groups.google.com/group/cukes > On Wed, Nov 16, 2011 at 11:34, Vin MR wrote: >> >> I'm new with Ruby and Cucumber.  I've tried this simple test, but it >> didn't work for me >> >> Give

Re: [rspec-users] newbie cucumber tutorial

2011-11-16 Thread aslak hellesoy
On Wed, Nov 16, 2011 at 5:34 PM, Vin MR 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

Re: [rspec-users] newbie cucumber tutorial

2011-11-16 Thread David Chelimsky
On Nov 16, 2011, at 11:34 AM, Vin MR wrote: > I'm new with Ruby and Cucumber. I've tried this simple test, but it > didn't work for me Please send this to the Cucumber mailing list: http://groups.google.com/group/cukes Cheers, David ___ rspec-users

Re: [rspec-users] newbie cucumber tutorial

2011-11-16 Thread Chris Habgood
this group is for rspec On Wed, Nov 16, 2011 at 11:34, Vin MR 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 |i

[rspec-users] newbie cucumber tutorial

2011-11-16 Thread Vin MR
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| . end I always get a complain when executing the test "You can implement st