You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- Before do
- @calc = Kalkulator.new
- end
-
- Given(/at jeg har tastet inn (\d+)/) do |n|
- @calc.push n.to_i
- end
-
- Når('jeg summerer') do
- @result = @calc.add
- end
-
- Så(/skal resultatet være (\d*)/) do |result|
- expect(@result).to eq(result.to_i)
- end
|