Sha256: a0195fa30afc3ec47b970c929805c2030dbe23e3ceaaffef0666467dcb70b249

Contents?: true

Size: 767 Bytes

Versions: 10

Compression:

Stored size: 767 Bytes

Contents

@javascript
Feature: Manage Posts
  As a User
  I want to be able to manage Posts (CRUD)

  Background:
    Given the Test User exists
      And the Test Post exists
      And I am signed in as Test User

  Scenario: New Post
    Given I am on the New Post page
    When I write a Post
    Then I should see my New Post

  Scenario: Edit Post
    Given I am on the Edit Post page
    When I edit the Test Post
    Then I should see the Test Post changed

  Scenario: Delete Posts
    When I delete the Test Post
    Then I should not see the Test Post

  Scenario: Navigate to New Post
    When I navigate to New Post
    Then I should see the New Post page

  Scenario: Navigate to Edit Post
    When I navigate to Edit Post
    Then I should see the Edit Post page

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
crowdblog-0.0.12 features/posts/manage.feature
crowdblog-0.0.10 features/posts/manage.feature
crowdblog-0.0.9 features/posts/manage.feature
crowdblog-0.0.8 features/posts/manage.feature
crowdblog-0.0.7 features/posts/manage.feature
crowdblog-0.0.6 features/posts/manage.feature
crowdblog-0.0.5 features/posts/manage.feature
crowdblog-0.0.4 features/posts/manage.feature
crowdblog-0.0.3 features/posts/manage.feature
crowdblog-0.0.2 features/posts/manage.feature