examples/i18n/en/features/step_definitons/calculator_steps.rb in kosmas58-cucumber-0.1.16.6 vs examples/i18n/en/features/step_definitons/calculator_steps.rb in kosmas58-cucumber-0.1.99.21
- old
+ new
@@ -1,18 +1,18 @@
# encoding: utf-8
require 'spec/expectations'
-$:.unshift(File.dirname(__FILE__) + '/../../lib')
+$:.unshift(File.dirname(__FILE__) + '/../../lib') # This line is not needed in your own project
require 'cucumber/formatters/unicode'
require 'calculator'
Before do
@calc = Calculator.new
end
After do
end
-Given "I have entered $n 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|
@result = @calc.send op