2010-08-21 22:48:24 +00:00
|
|
|
### Snippets
|
|
|
|
|
|
|
|
# helps create a simple snippet with a slug and template
|
|
|
|
def create_snippet(name, template = nil)
|
|
|
|
snippet = @site.snippets.create(:name => name, :template => template)
|
|
|
|
snippet.should be_valid
|
|
|
|
snippet
|
|
|
|
end
|
|
|
|
|
|
|
|
# creates a snippet
|
|
|
|
|
|
|
|
Given /^a snippet named "([^"]*)" with the template:$/ do |name, template|
|
|
|
|
@snippet = create_snippet(name, template)
|
|
|
|
end
|
|
|
|
|
2011-06-02 13:15:11 +00:00
|
|
|
# checks to see if a string is in the slug
|
|
|
|
Then /^I should have "(.*)" in the (.*) snippet/ do |content, snippet_slug|
|
|
|
|
snippet = @site.snippets.where(:slug => snippet_slug).first
|
|
|
|
raise "Could not find snippet: #{snippet_slug}" unless snippet
|
|
|
|
|
|
|
|
snippet.template.should == content
|
|
|
|
end
|
2010-08-21 22:48:24 +00:00
|
|
|
|