Sha256: fe7535d66dfac48c181bdf4077dc8bd51de60a684ca443e8fb4c98d308f73cd9

Contents?: true

Size: 692 Bytes

Versions: 6

Compression:

Stored size: 692 Bytes

Contents

Feature: Content Pages
  Visitors should be able to see content pages

  # This should be ported from test/functional/content_controller_test.rbover time.

  Background:
    Given the cms database is populated

  Scenario: Page Not Found as Guest
    Given I request /a/non-existent/page
    Then I should see the CMS 404 page

  Scenario: Viewing an archived page as a Guest
    Given an archived page at "/an/archived-page" exists
    When I request /an/archived-page
    Then I should see the CMS 404 page

  Scenario: A guest accesses a protected page
    Given a protected page at "/protected-page" exists
    When I request /protected-page
    Then I should see the CMS :forbidden page

Version data entries

6 entries across 6 versions & 1 rubygems

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