Sha256: 3645c9d957b0a74d028cb3a4926494ea5140424394611d071cb7ec583280cea6

Contents?: true

Size: 1.56 KB

Versions: 62

Compression:

Stored size: 1.56 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: 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

62 entries across 62 versions & 1 rubygems

Version Path
noodall-ui-0.3.20 features/manage_content_tree.feature
noodall-ui-0.3.19 features/manage_content_tree.feature
noodall-ui-0.4.1 features/manage_content_tree.feature
noodall-ui-0.4.0 features/manage_content_tree.feature
noodall-ui-0.3.17 features/manage_content_tree.feature
noodall-ui-0.3.16 features/manage_content_tree.feature
noodall-ui-0.3.15 features/manage_content_tree.feature
noodall-ui-0.3.14 features/manage_content_tree.feature
noodall-ui-0.3.13 features/manage_content_tree.feature
noodall-ui-0.3.12 features/manage_content_tree.feature
noodall-ui-0.3.11 features/manage_content_tree.feature
noodall-ui-0.3.8 features/manage_content_tree.feature
noodall-ui-0.3.7 features/manage_content_tree.feature
noodall-ui-0.3.6 features/manage_content_tree.feature
noodall-ui-0.3.5 features/manage_content_tree.feature
noodall-ui-0.3.4 features/manage_content_tree.feature
noodall-ui-0.3.3 features/manage_content_tree.feature
noodall-ui-0.3.2 features/manage_content_tree.feature
noodall-ui-0.3.1 features/manage_content_tree.feature
noodall-ui-0.3.0 features/manage_content_tree.feature