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 = Calculator.new
- end
-
- After do
- end
-
- Задати(/унесен број (\d+) у калкулатор/) do |n|
- @calc.push n.to_i
- end
-
- Када(/притиснем (\w+)/) do |op|
- @result = @calc.send op
- end
-
- Онда('би требало да буде {float} прикаѕано на екрану') do |result|
- expect(@result).to eq(result)
- end
|