Sha256: ed56339db6a1c63bbe842e4940331c6b8de7fe7d4ca15f22c2d949e2856801da
Contents?: true
Size: 255 Bytes
Versions: 12
Compression:
Stored size: 255 Bytes
Contents
Given /^a file "([^"]+)" with content:$/ do |path, content| cd ?. do File.write(path, content + $/) end end Then /^the file "([^"]+)" must contain exactly:$/ do |path, content| cd ?. do expect(File.read(path)).to eq content + $/ end end
Version data entries
12 entries across 12 versions & 1 rubygems