Sha256: 15c7f2c6624111900852edf80733e407004b54d03c6fb47dda14a8b847b62fee

Contents?: true

Size: 481 Bytes

Versions: 1

Compression:

Stored size: 481 Bytes

Contents

Then /^the example must pass$/ do
  step %q{the output should contain "0 failures"}
  step %q{the exit status should be 0}
end

Then /^the example must fail$/ do
  step %q{the output should contain "1 failure"}
  step %q{the exit status should not be 0}
end

Then /^the output must match \/([^\/]*)\/$/ do |expected|
  step %{the output should match /#{expected}/}
end

Then /^the output must contain "([^"]*)"$/ do |expected|
  step %{the output should contain "#{expected}"}
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rspec-must-0.0.1 features/steps/rspec_steps.rb