Sha256: cbdad219c06cc5b60e0ed2d122150cd6e856a03b00238c74eb5a1ef594eb8c74

Contents?: true

Size: 941 Bytes

Versions: 4

Compression:

Stored size: 941 Bytes

Contents

Feature: Manage Links
  Content Editors should be able to create links on the sitemap in order to have menu items that go to URLs that are
  served by CMS pages.

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

  Scenario: Add Link
    When I am adding a link on the sitemap
    And I fill in "Name" with "A New Link"
    And I fill in "Url" with "http://www.browsercms.com"
    And I click on "Save"
    Then I should see a page titled "Sitemap"
    Then I should see the following content:
      | A New Link |


  Scenario: Update And Publish Link
    Given the following link exists:
      | name | url                | section |
      | CMS  | www.browsercms.com | /       |
    When I edit that link
    And I change the link name to "A more well tested CMS"
    Then I should see a page titled "Sitemap"
    Then I should see the following content:
      | A more well tested CMS |


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
browsercms-3.4.2 features/sitemap/manage_links.feature
browsercms-3.4.2.rc1 features/sitemap/manage_links.feature
browsercms-3.4.1 features/sitemap/manage_links.feature
browsercms-3.4.0 features/sitemap/manage_links.feature