32 lines
883 B
Ruby
32 lines
883 B
Ruby
Then /^the output must match \/([^\/]+)\/$/ do |pattern|
|
|
assert_matching_output pattern, all_output
|
|
end
|
|
|
|
Then /^the output must contain "([^"]+)"$/ do |content|
|
|
assert_partial_output content, all_output
|
|
end
|
|
|
|
Then /^the output must contain:$/ do |content|
|
|
assert_partial_output content, all_output
|
|
end
|
|
|
|
Then /^the output must not contain "([^"]+)"$/ do |content|
|
|
assert_no_partial_output content, all_output
|
|
end
|
|
|
|
Then /^the output must contain exactly "([^"]+)"$/ do |content|
|
|
assert_exact_output content, all_output
|
|
end
|
|
|
|
Then /^the output must contain exactly:$/ do |content|
|
|
assert_exact_output content, all_output
|
|
end
|
|
|
|
Then /^the error output must contain exactly "([^"]+)"$/ do |content|
|
|
assert_exact_output content, all_stderr
|
|
end
|
|
|
|
Then /^the output must not contain ruby lib directory$/ do
|
|
assert_no_partial_output RbConfig::CONFIG['rubylibdir'], all_output
|
|
end
|