flowerbox-delivery/features/step_definitions/then/temp_file/should_contain.rb

8 lines
199 B
Ruby
Raw Normal View History

2012-01-30 16:34:57 +00:00
Then /^the temp file should contain:$/ do |string|
file_lines = File.read(@temp_file_path).lines.collect(&:strip)
string.lines.each do |line|
file_lines.should include(line.strip)
end
end