Sha256: 6d3b3bf67cc39381573d8f992abd5d4681b3ea2e58bfb09ae20753060e39f01a

Contents?: true

Size: 458 Bytes

Versions: 2

Compression:

Stored size: 458 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.file_did_change(path)
end

Then /^the file "([^\"]*)" did delete$/ do |path|
  @server_inst.file_did_delete(path)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
middleman-core-3.0.0.alpha.9 lib/middleman-core/step_definitions/middleman_steps.rb
middleman-core-3.0.0.alpha.8 lib/middleman-core/step_definitions/middleman_steps.rb