Sha256: 7b635adb4ac64ab8b66ca887058d450203ba9f34c3e65e4e0e661ad02b0b09b1

Contents?: true

Size: 663 Bytes

Versions: 2

Compression:

Stored size: 663 Bytes

Contents

Given /^the following table$/ do |table|
end

When /^I pass an "([^"]*)"$/ do |argument|
end

When /I do something that results in an error/ do
  raise "Crash!"
end

When /I call a pending Step/ do
  pending
end

Given /^I execute a Background step$/ do; end
Given /^I do something$/ do; end
When /^I do something else$/ do; end
Then /^I should see stuff$/ do; end
Then /^the entire Scenario should pass$/ do; end
Then /^the entire Scenario should fail$/ do; end
Then /^the entire Scenario should be pending$/ do; end
Then /^the entire Scenario should be skipped anyway$/ do; end
Then /^Cuukie should be OK with it$/ do; end
Given /^I say$/ do |smart_stuff|; end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cuukie-0.1.4 spec/test_project/features/step_definitions/main_steps.rb
cuukie-0.1.3 spec/test_project/features/step_definitions/example_steps.rb