14 lines
306 B
Ruby
14 lines
306 B
Ruby
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
|
|
|