Sha256: 490c98f3641712df86888deb4e44cea913f7ec3796902144aaf76100aaf25616

Contents?: true

Size: 432 Bytes

Versions: 33

Compression:

Stored size: 432 Bytes

Contents

steps_for :step_calling do
  step 'visible callee' do
    @testing = 123
  end

  step 'a visible step call' do
    step 'visible callee'
    @testing.should eq(123)
  end

  step 'an invisible step call' do
    step 'this is an unimplemented step'
  end

  step 'a global step call' do
    step 'there is a monster'
    @monster.should == 1
  end

  step 'an included call' do
    step 'an auto-loaded step is available'
  end
end

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
turnip-4.4.1 examples/steps/step_calling_steps.rb
turnip-4.4.0 examples/steps/step_calling_steps.rb
turnip-4.3.0 examples/steps/step_calling_steps.rb
turnip-4.2.0 examples/steps/step_calling_steps.rb
turnip-4.1.0 examples/steps/step_calling_steps.rb
turnip-4.0.1 examples/steps/step_calling_steps.rb
turnip-4.0.0 examples/steps/step_calling_steps.rb
allure_turnip-0.2.0 spec/steps/step_calling_steps.rb
allure_turnip-0.1.1 spec/steps/step_calling_steps.rb
allure_turnip-0.1.0 spec/steps/step_calling_steps.rb
turnip-3.1.0 examples/steps/step_calling_steps.rb
turnip-3.0.0 examples/steps/step_calling_steps.rb
turnip-3.0.0.pre.beta.5 examples/steps/step_calling_steps.rb
turnip-3.0.0.pre.beta.4 examples/steps/step_calling_steps.rb
turnip-3.0.0.pre.beta.3 examples/steps/step_calling_steps.rb
turnip-3.0.0.pre.beta.2 examples/steps/step_calling_steps.rb
turnip-3.0.0.pre.beta.1 examples/steps/step_calling_steps.rb
turnip-2.1.1 examples/steps/step_calling_steps.rb
turnip-2.1.0 examples/steps/step_calling_steps.rb
turnip-2.0.2 examples/steps/step_calling_steps.rb