Sha256: adea14666376dd9dad9c1c1e1c72d4cf94fafdcac256cfd70953f7a51658e8fb

Contents?: true

Size: 495 Bytes

Versions: 22

Compression:

Stored size: 495 Bytes

Contents

# encoding: utf-8
require 'spec/expectations'
$:.unshift(File.dirname(__FILE__) + '/../../lib') # This line is not needed in your own project
require 'cucumber/formatter/unicode'
require 'calculadora'

Before do
  @calc = Calculadora.new
end

After do
end

Given /que eu digitei (\d+) na calculadora/ do |n|
  @calc.push n.to_i
end

When 'eu aperto o botão de soma' do
  @result = @calc.soma
end

Then /o resultado na calculadora deve ser (\d*)/ do |result|
  @result.should == result.to_i
end

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
aslakhellesoy-cucumber-0.2.2.2 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.2.3.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.2.3.2 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.2.3.3 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.2.3.4 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.2.3 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.0.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.0 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.1.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.2 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.3.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
aslakhellesoy-cucumber-0.3.3 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
cavalle-cucumber-0.2.3.3.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
cavalle-cucumber-0.2.3.3.2 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
fcoury-cucumber-0.2.3.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
kosmas58-cucumber-0.2.3.3 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
cucumber-0.3.0 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
cucumber-0.2.3 examples/i18n/pt/features/step_definitions/calculadora_steps.rb
cucumber-0.3.1 examples/i18n/pt/features/step_definitions/calculadora_steps.rb