Sha256: bbccb9957ffb0601fb8b4485378f618fd857319827f198091807e6a2c30ffed3

Contents?: true

Size: 1.14 KB

Versions: 36

Compression:

Stored size: 1.14 KB

Contents

Feature: Publish Content
In order to control when content is available on the website a website administrator will be able to define the time period for which content is published

  Scenario: Publish content
    Given content exists
    When I publish the content
    Then the content should be visible on the website
    When I hide the content
    Then the content should not be visible on the website

  Scenario: Publish content for set period
    Given content exists
    And I publish content between "20th July 2010" and "30th July 2010"
    And today is "15th July 2010"
    Then the content should not be visible on the website
    When today is "25th July 2010"
    Then the content should be visible on the website
    When today is "5th August 2010"
    Then the content should not be visible on the website

  @wip
  Scenario: Publish content for set period
    Given today is "5th August 2010"
    And published content exists with publish to date: "30th July 2010"
    Then the content should not be visible on the website
    When I am editing the content
    And I clear the publish to date
    Then the content should be visible on the website

Version data entries

36 entries across 36 versions & 1 rubygems

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