Sha256: 10303b8681710b6f46ab284be22bdff48a28fc2b587296e442f7e85826c61a88

Contents?: true

Size: 1.84 KB

Versions: 33

Compression:

Stored size: 1.84 KB

Contents

Feature: Manage Content Tree
  In order to provide up to date information in a structured manner on the website a website editor will be able to manage the content in a tree structure

  Background:
    Given the website has been populated with content based on the site map

  Scenario: Browse Content Tree
    Given I am on the content admin page
    Then I should see a list of the roots
    When I click on a root
    Then I should see a list the of the root's children
    When I click on a child
    Then I should see a list of the child's children

  Scenario: content Breadcrumb
    Given I am on the content admin page
    Then I should not see a breadcrumb
    When I click on a root
    Then I should see a breadcrumb title of page
    When I click on a child
    Then I should see a breadcrumb title of page
      And I should see a breadcrumb link to parent

  Scenario: Create Root Content
    Given I am on the content admin page
    Then I should be able to create a new root
    And I should see the root listed within the roots

  Scenario: Create Sub Content
    Given I am on the content admin page
    When I click on a root
    Then I should be able to create a new child
    And I should see the child listed within the root's children

  Scenario: Delete Content
    Given I am on the content admin page
    Then I should be able to delete content
    And the content and all of it's sub content will be removed from the website

  Scenario: Reorder Children
    Given I am on the content admin page
    When I click on a root
    Then I should be able change the order of the root's children

  @javascript
  Scenario: Move Child to another Parent
    Given I am on the content admin page
    When I click on a root
    Then I should be able to move a child content to another parent
    And I should see the child listed within the other parent's children

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
noodall-ui-0.5.15 features/manage_content_tree.feature
noodall-ui-0.5.14 features/manage_content_tree.feature
noodall-ui-0.5.13 features/manage_content_tree.feature
noodall-ui-0.5.12 features/manage_content_tree.feature
noodall-ui-0.5.11 features/manage_content_tree.feature
noodall-ui-0.4.11 features/manage_content_tree.feature
noodall-ui-0.4.10 features/manage_content_tree.feature
noodall-ui-0.5.10 features/manage_content_tree.feature
noodall-ui-0.5.9 features/manage_content_tree.feature
noodall-ui-0.4.9 features/manage_content_tree.feature
noodall-ui-0.5.8 features/manage_content_tree.feature
noodall-ui-0.4.8 features/manage_content_tree.feature
noodall-ui-0.4.7 features/manage_content_tree.feature
noodall-ui-0.5.7 features/manage_content_tree.feature
noodall-ui-0.5.6 features/manage_content_tree.feature
noodall-ui-0.5.5 features/manage_content_tree.feature
noodall-ui-0.5.4 features/manage_content_tree.feature
noodall-ui-0.5.3 features/manage_content_tree.feature
noodall-ui-0.5.2 features/manage_content_tree.feature
noodall-ui-0.5.1 features/manage_content_tree.feature