cucumber test for thin_check --super-block-only

This commit is contained in:
Joe Thornber
2013-04-11 13:40:47 +01:00
parent 7d3ab79789
commit 3629e1e2b5
4 changed files with 52 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
Given(/^valid metadata$/) do
in_current_dir do
write_valid_xml(xml_file)
end
run_simple("dd if=/dev/zero of=#{dev_file} bs=4k count=1024")
run_simple("thin_restore -i #{xml_file} -o #{dev_file}")
end
When(/^I run thin_check with (.*?)$/) do |opts|
run "thin_check #{opts} #{dev_file}"
end