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.
|
- When(/^I ask Tcl to calculate fibonacci for (\d+)$/) do |n|
- @fib_result = @fib.eval("fib #{n}").to_i
- end
-
- Then(/^it should give me (\d+)$/) do |expected|
- expect(@fib_result).to eq expected.to_i
- end
|