Sha256: eb52bedafdab1506f7bb545142fdc8bad4a3a190a1ae9d0223634358bcf5585b

Contents?: true

Size: 990 Bytes

Versions: 4

Compression:

Stored size: 990 Bytes

Contents

Given %r{^a file named "([^"]+)" with:$} do |file_name, code|
  create_file(file_name, code)
end

When %r{^I run "r?spec ([^"]+)"$} do |file_and_args|
  spec(file_and_args)
end

When %r{^I run "ruby ([^"]+)"$} do |file_and_args|
  ruby(file_and_args)
end

Then /^the (.*) should match (.*)$/ do |stream, string_or_regex|
  written = case(stream)
    when 'stdout' then last_stdout
    when 'stderr' then last_stderr
    else raise "Unknown stream: #{stream}"
  end
  written.should smart_match(string_or_regex)
end

Then /^the (.*) should not match (.*)$/ do |stream, string_or_regex|
  written = case(stream)
    when 'stdout' then last_stdout
    when 'stderr' then last_stderr
    else raise "Unknown stream: #{stream}"
  end
  written.should_not smart_match(string_or_regex)
end

Then /^the exit code should be (\d+)$/ do |exit_code|
  if last_exit_code != exit_code.to_i
    raise "Did not exit with #{exit_code}, but with #{last_exit_code}. Standard error:\n#{last_stderr}"
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rspec-core-2.0.0.a4 features/step_definitions/running_rspec_steps.rb
rspec-core-2.0.0.a3 features/step_definitions/running_rspec_steps.rb
rspec-core-2.0.0.a2 features/step_definitions/running_rspec_steps.rb
rspec-core-2.0.0.a1 features/step_definitions/running_rspec_steps.rb