engine/features/admin/snippets.feature
2011-06-02 21:36:03 +08:00

29 lines
753 B
Gherkin

Feature: Snippets
In order to manage snippets
As an administrator
I want to add/edit/delete snippets of my site
Background:
Given I have the site: "test site" set up
And I am an authenticated user
And a page named "home" with the template:
"""
{% include 'yield' %}
"""
And a snippet named "yield" with the template:
"""
"yield"
"""
And a snippet named "other" with the template:
"""
"other"
"""
Scenario: Updating a Snippet that includes another snippet
When I go to theme assets
And I follow "yield"
And I fill in "snippet_template" with "{% include 'other' %}"
And I press "Update"
Then I should see "Snippet was successfully updated."
And I should have "{% include 'other' %}" in the yield snippet