Sha256: 98e54edb7ca515635ad640d75d5f0b94c4853b478fe57c31f2262afb7b551edb

Contents?: true

Size: 1.75 KB

Versions: 13

Compression:

Stored size: 1.75 KB

Contents

Feature: Managing snippets
  In order to share content between layouts and pages, as a designer I want to
  manage a collection of snippets
  
  Background:
    Given I am logged in as "designer"
  
  Scenario: List snippets
    When I follow "Design" within "#navigation"
    And I follow "Snippets"
    Then I should see "first"
    And I should see "another"
    And I should see "markdown"
    # And a host of others
  
  Scenario: Create a snippet
    When I follow "Design" within "#navigation"
    And I follow "Snippets"
    And I follow "New Snippet"
    And I fill in "Name" with "Mine"
    And I fill in "Body" with "My snippet"
    And I press "Create Snippet"
    Then I should be on the snippets list
    And I should see "Mine"
  
  Scenario: Display form errors
    When I follow "Design" within "#navigation"
    And I follow "Snippets"
    And I follow "New Snippet"
    And I fill in "Body" with "My snippet"
    And I press "Create Snippet"
    Then I should see an error message
    And I should see the form
  
  Scenario: Continue editing
    When I follow "Design" within "#navigation"
    And I follow "Snippets"
    And I follow "New Snippet"
    And I fill in "Name" with "Mine"
    And I fill in "Body" with "My snippet"
    And I press "Save and Continue Editing"
    Then I should see "Edit Snippet"
    And I should see the form
  
  Scenario: View a snippet
    When I view a filtered snippet
    Then I should see "Edit Snippet"
    And I should see "Markdown"
  
  Scenario: Delete a snippet with confirmation
    When I follow "Design" within "#navigation"
    And I follow "Snippets"
    And I follow "Remove"
    Then I should see "permanently remove"
    And I should see "another"
    When I press "Delete Snippet"
    Then I should not see "another"

Version data entries

13 entries across 13 versions & 4 rubygems

Version Path
radiant-1.0.1 features/admin/snippets_management.feature
radiant-1.0.0 features/admin/snippets_management.feature
radiant-1.0.0.rc5 features/admin/snippets_management.feature
radiant-1.0.0.rc4 features/admin/snippets_management.feature
radiant-1.0.0.rc3 features/admin/snippets_management.feature
kajam-1.0.3.rc2 features/admin/snippets_management.feature
radiant-1.0.0.rc2 features/admin/snippets_management.feature
radiant-1.0.0.rc1 features/admin/snippets_management.feature
radiant-rails3-0.1 features/admin/snippets_management.feature
radiantcms-couchrest_model-0.1.3 features/admin/snippets_management.feature
radiantcms-couchrest_model-0.1.2 features/admin/snippets_management.feature
radiantcms-couchrest_model-0.1.1 features/admin/snippets_management.feature
radiantcms-couchrest_model-0.1 features/admin/snippets_management.feature