Sha256: 501fb18281a626732c4c143fbad6a4d739d5f3880375a93a6f46a9c3949311cf
Contents?: true
Size: 461 Bytes
Versions: 69
Compression:
Stored size: 461 Bytes
Contents
Then /^the file "([^\"]*)" has the contents$/ do |path, contents| write_file(path, contents) step %Q{the file "#{path}" did change} end Then /^the file "([^\"]*)" is removed$/ do |path| step %Q{I remove the file "#{path}"} step %Q{the file "#{path}" did delete} end Then /^the file "([^\"]*)" did change$/ do |path| @server_inst.files.did_change(path) end Then /^the file "([^\"]*)" did delete$/ do |path| @server_inst.files.did_delete(path) end
Version data entries
69 entries across 69 versions & 3 rubygems