middleman/middleman-core/lib/middleman-core/step_definitions/middleman_steps.rb
2011-12-31 12:56:17 -08:00

23 lines
593 B
Ruby

require "fileutils"
Given /^a project at "([^\"]*)"$/ do |dirname|
@target = File.join(PROJECT_ROOT_PATH, "fixtures", dirname)
end
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