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
-
- 前提('{int} を入力') do |int|
- @calc.push int
- end
-
- もし(/(\w+) を押した/) do |op|
- @result = @calc.send op
- end
-
- ならば(/(.*) を表示/) do |result|
- expect(@result).to eq(result.to_f)
- end
|