Sha256: 9dd1ef77b01b4b79c888a8ac3b104e86f558e57f52c00703b41243a6be5a9c1a

Contents?: true

Size: 788 Bytes

Versions: 4

Compression:

Stored size: 788 Bytes

Contents

Feature: Authorize viewing unpublished posts
  As a blog author
  In order to keep my content clean and consistent
  I want to prevent others from seeing a post before it is published
  
  Scenario: Shown to authorized when not published
    Given I am authorized
    When I create a post called "Post title"
      And I am on the posts page
    Then I should see "Post title"
    
  Scenario: Not shown to unauthorized when not published
    Given I have created a post called "Post title"
      And I am not authorized
    When I am on the posts page
    Then I should not see "Post title"

  Scenario: Become available when published
    Given I have published a post called "Post title"
      And I am not authorized
    When I am on the posts page
    Then I should see "Post title"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mist-0.6.3 features/authorize_view_unpublished.feature
mist-0.6.2 features/authorize_view_unpublished.feature
mist-0.6.1 features/authorize_view_unpublished.feature
mist-0.6.0 features/authorize_view_unpublished.feature