Sha256: 13ed034d92f4cfb82062c0f5395aa2156f50638bc186311552d0468f69e973d9

Contents?: true

Size: 599 Bytes

Versions: 4

Compression:

Stored size: 599 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 'visible failed callee' do
    @testing = 123
    @testing.should eq(321)
  end

  step 'a visible failed step call' do
    step 'visible failed callee'
  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

4 entries across 4 versions & 1 rubygems

Version Path
allure_turnip-0.4.0 spec/steps/step_calling_steps.rb
allure_turnip-0.3.1 spec/steps/step_calling_steps.rb
allure_turnip-0.3.0 spec/steps/step_calling_steps.rb
allure_turnip-0.2.1 spec/steps/step_calling_steps.rb