Sha256: f7c53efaeb624d4114c7aef0fc7e6e8030a2dec360b5a4e4db032053eeeb4646
Contents?: true
Size: 460 Bytes
Versions: 3
Compression:
Stored size: 460 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
3 entries across 3 versions & 1 rubygems