Sha256: 5be1083d8f48706fc19b332e7e8cb3a40d3ecdb21c4cafeda95c15d0db3c5a87

Contents?: true

Size: 824 Bytes

Versions: 5

Compression:

Stored size: 824 Bytes

Contents

Feature: Page Templates
  CMS Administrators should be able to create page and partial templates through the UI.

  Background:
    Given the cms database is populated
    And I am logged in as a Content Editor

  Scenario: Add a Page Template
    When I am at /cms/page_templates
    And I click on "Add"
    Then I should see "New Cms/Page Template"
    When I fill in the following:
      | Name | hello |
      | Body | World |
    And I press "Save"
    Then I should see a page titled "List Page Templates"
    Then I should see the following content:
      | Hello |

  Scenario: Multiple pages of templates
    Given there are 20 page templates
    When I am at /cms/page_templates
    Then I should see "Displaying 1 - 15 of 20"
    When I click on "next_page_link"
    Then I should see "Displaying 16 - 20 of 20"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
browsercms-3.4.2.rc1 features/page_templates.feature
browsercms-3.4.1 features/page_templates.feature
browsercms-3.4.0 features/page_templates.feature
browsercms-3.4.0.rc2 features/page_templates.feature
browsercms-3.4.0.rc1 features/page_templates.feature