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.

calculator_steps.rb 584 B

2 years ago
12345678910111213141516171819202122232425
  1. $LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../../lib")
  2. require 'calculator'
  3. Before do
  4. @calc = Calculator.new
  5. end
  6. After do
  7. end
  8. Δεδομένου('ότι έχω εισάγει {int} στην αριθμομηχανή') do |int|
  9. @calc.push int
  10. end
  11. Δεδομένου('έχω εισάγει {int} στην αριθμομηχανή') do |int|
  12. @calc.push int
  13. end
  14. Όταν(/πατάω (\w+)/) do |op|
  15. @result = @calc.send op
  16. end
  17. Τότε(/το αποτέλεσμα στην οθόνη πρέπει να είναι (.*)/) do |result|
  18. expect(@result).to eq(result.to_f)
  19. end

No Description

Contributors (1)