Sha256: 206b2d1022269042f2ae07d1d4ca8eecbdd5c5de3afe5f9f7dfe3a6b7cfaa36d
Contents?: true
Size: 510 Bytes
Versions: 5
Compression:
Stored size: 510 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(@server_inst.root_path + path) end Then /^the file "([^\"]*)" did delete$/ do |path| @server_inst.files.did_delete(@server_inst.root_path + path) end
Version data entries
5 entries across 5 versions & 1 rubygems