More work on the thin_check --quiet feature

This commit is contained in:
Joe Thornber 2013-06-19 14:36:09 +01:00
parent 9b4ec6cafc
commit 5f778db322
2 changed files with 13 additions and 3 deletions

View File

@ -28,3 +28,8 @@ When(/^I run thin_rmap with (.*?)$/) do |opts|
run_simple("thin_rmap #{opts} #{dev_file}", false)
end
Then /^it should give no output$/ do
ps = only_processes.last
output = ps.stdout + ps.stderr
output.should == ""
end

View File

@ -77,6 +77,11 @@ Feature: thin_check
Scenario: -q should give no output
Given a corrupt superblock
When I run thin_check with --quiet
Then it should fail with:
"""
"""
Then it should fail
And it should give no output
Scenario: --quiet should give no output
Given a corrupt superblock
When I run thin_check with --quiet
Then it should fail
And it should give no output