Sha256: ae5dceb609af1af4318e7f04dee1a6531f222f5a11763b358e43d54d54a98f2d
Contents?: true
Size: 526 Bytes
Versions: 17
Compression:
Stored size: 526 Bytes
Contents
Given /^I am using a scenario outline$/ do end When /^I use (.*?)$/ do |value| end When /^I fail with (.*?)$/ do |value| true.should == false end Then /^the examples should(?: not)? work$/ do sleep 1 end When /^I have a nested table step like this:$/ do |table| end Then /^the table should be displayed in the results$/ do end When /^Cucumber puts$/ do |some_string| puts some_string @last_string = some_string sleep 1 end Then /^it should say$/ do |some_string| @last_string.should == some_string end
Version data entries
17 entries across 17 versions & 2 rubygems