# encoding: utf-8 require 'spec/expectations' $:.unshift(File.dirname(__FILE__) + '/../../lib') # This line is not needed in your own project require 'cucumber/formatter/unicode' require 'calculator' Before do @calc = Calculator.new end After do end Given /שהזנתי (\d+) למחשבון/ do |n| @calc.push n.to_i end When /אני לוחץ על (\w+)/ do |op| @result = @calc.send op end Then /התוצאה על המסך צריכה להיות (.*)/ do |result| @result.should == result.to_f end