Sha256: 0fcacc03bfcd98b524df42e4648ffccbeed5d16ce208504b326020b0e3a77538

Contents?: true

Size: 480 Bytes

Versions: 8

Compression:

Stored size: 480 Bytes

Contents

When /^Cucumber puts "(.*?)"$/ do |some_string|
  puts some_string
  embed('autotrader.png', 'image/png', 'AutoTrader')
  sleep 1
end

When /^Cucumber puts "(.*?)" in a background$/ do |some_string|
  puts some_string
end

Then /^it should say hello$/ do
  puts "It said hello"
end

When /^the first step fails$/ do
  expect(true).to be false
end

Then /^the second step should not execute$/ do
  puts "Should not execute"
end

When /^the first step is pending$/ do
  pending
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ugly_face-0.8 fixtures/step_definitions/basic_steps.rb
ugly_face-0.7 fixtures/step_definitions/basic_steps.rb
ugly_face-0.6 fixtures/step_definitions/basic_steps.rb
ugly_face-0.5 fixtures/step_definitions/basic_steps.rb
ugly_face-0.4 fixtures/step_definitions/basic_steps.rb
ugly_face-0.3 fixtures/step_definitions/basic_steps.rb
ugly_face-0.2 fixtures/step_definitions/basic_steps.rb
ugly_face-0.1 fixtures/step_definitions/basic_steps.rb