Sha256: 6e2f57a1b59f74923dd82f679477f4064d901135376f995cec04e47346a58f7b
Contents?: true
Size: 474 Bytes
Versions: 12
Compression:
Stored size: 474 Bytes
Contents
# encoding: utf-8 Then /^the file "([^"]*)" should contain each of these content parts:$/ do |file, content_parts| parts = content_parts.split("\n") parts.each do |p| steps %Q{Then the file "#{file}" should contain "#{p}"} end end Then /^the file "([^"]*)" should not contain each of these content parts:$/ do |file, content_parts| parts = content_parts.split("\n") parts.each do |p| steps %Q{Then the file "#{file}" should not contain "#{p}"} end end
Version data entries
12 entries across 12 versions & 1 rubygems