Title / Description
Code # encoding: utf-8 require 'spec/expectations' require 'cucumber/formatter/unicode' $:.unshift(File.dirname(__FILE__) + '/../../lib') require 'calculator' Before do @calc = Calculator.new end After do end Given /ich habe (\d+) in den Taschenrechner eingegeben/ do |n| @calc.push n.to_i end When /ich (\w+) drücke/ do |op| @result = @calc.send op end Then /sollte das Ergebniss auf dem Bildschirm (.*) sein/ do |result| @result.should == result.to_f end
Author
Highlight as C C++ CSS Clojure Delphi ERb Groovy (beta) HAML HTML JSON Java JavaScript PHP Plain text Python Ruby SQL XML YAML diff code