Sha256: 9b0d268b4870cfe504d4779ad5d540a04978c030ac4d1837ef31d3a55c53bfd0

Contents?: true

Size: 1.03 KB

Versions: 11

Compression:

Stored size: 1.03 KB

Contents

### Snippets

# helps create a simple snippet with a slug and template
def new_snippet(name, template = nil)
  @site.snippets.new(:name => name, :template => template)
end

def create_snippet(name, template = nil)
  snippet = new_snippet(name, template)
  snippet.save!
  snippet
end

# creates a snippet

Given /^a snippet named "([^"]*)" with the template:$/ do |name, template|
  @snippet = create_snippet(name, template)
end

Given /^a snippet named "([^"]*)" with id "([^"]*)" and template:$/ do |name, id, template|
  @snippet = new_snippet(name, template)
  @snippet.id = BSON::ObjectId(id)
  @snippet.save!
end

When /^I change the snippet template to "([^"]*)"$/ do |code|
  page.evaluate_script "window.application_view.view.editor.setValue('#{code}')"
end

# 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

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
locomotivecms-3.0.0.rc3 features/step_definitions/snippet_steps.rb
locomotivecms-3.0.0.rc2 features/step_definitions/snippet_steps.rb
locomotivecms-3.0.0.rc1 features/step_definitions/snippet_steps.rb
locomotivecms-3.0.0.pre.beta.1 features/step_definitions/snippet_steps.rb
locomotivecms-3.0.0.pre.alpha.3 features/step_definitions/snippet_steps.rb
locomotivecms-3.0.0.pre.alpha.2 features/step_definitions/snippet_steps.rb
locomotivecms-3.0.0.pre.alpha features/step_definitions/snippet_steps.rb
locomotive_cms-2.0.3 features/step_definitions/snippet_steps.rb
locomotive_cms-2.0.2 features/step_definitions/snippet_steps.rb
locomotive_cms-2.0.1 features/step_definitions/snippet_steps.rb
locomotive_cms-2.0.0 features/step_definitions/snippet_steps.rb