examples/i18n/en/features/step_definitions/calculator_steps.rb in cucumber-3.0.0.pre.1 vs examples/i18n/en/features/step_definitions/calculator_steps.rb in cucumber-3.0.0.pre.2

- old
+ new

@@ -1,7 +1,7 @@ # encoding: utf-8 -begin require 'rspec/expectations'; rescue LoadError; require 'spec/expectations'; end +begin require 'rspec/expectations'; rescue LoadError; require 'spec/expectations'; end require 'cucumber/formatter/unicode' $:.unshift(File.dirname(__FILE__) + '/../../lib') require 'calculator' Before do @@ -9,16 +9,16 @@ end After do end -Given /I have entered (\d+) into the calculator/ do |n| +Given(/I have entered (\d+) into the calculator/) do |n| @calc.push n.to_i end -When /I press (\w+)/ do |op| +When(/I press (\w+)/) do |op| @result = @calc.send op end -Then /the result should be (.*) on the screen/ do |result| +Then(/the result should be (.*) on the screen/) do |result| @result.should == result.to_f end