# encoding: utf-8 begin require 'rspec/expectations' rescue LoadError require 'spec/expectations' end require 'cucumber/formatter/unicode' $:.unshift(File.dirname(__FILE__) + '/../../lib') 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