Sha256: 8b5584bbe8874b7b50a3f48dc79844961017c7d54c5ce5c3a2445d889799ef49

Contents?: true

Size: 1.05 KB

Versions: 21

Compression:

Stored size: 1.05 KB

Contents

Feature: Manage Blog

  In order to keep my site full of fresh content
  As an admin
  I want to set up and manage a blog

  Scenario: Create a blog
    Given no blogs exist
    When go to the admin_blogs page
    And I follow "Set Up Blog"
    And I fill in "Blog Title" with "Adventures at 7-11"
    And I fill in "Description" with "An epic tale of strange stuff that happens at my local convenience store."
    And I select "10" from "Posts Per Page"
    And I press "Save"
    Then I should see "Successfully set up the blog."
    And I should see "Adventures at 7-11"
    And I should see "An epic tale of strange stuff that happens at my local convenience store."
    And I should see "10"

  Scenario: Edit a blog
    Given I have a blog "My Blog"
    When go to the admin_blogs page
    And I follow "Blog Configuration"
    Then I should see "Blog Details"
    And I follow "Edit"
    And I fill in "Blog Title" with "Adventures at Circle K"
    And I press "Save"
    Then I should see "Successfully modified the blog."
    And I should see "Adventures at Circle K"

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
blog_logic-1.4.15 features/manage_blog.feature
blog_logic-1.4.14 features/manage_blog.feature
blog_logic-1.4.13 features/manage_blog.feature
blog_logic-1.4.12 features/manage_blog.feature
blog_logic-1.4.11 features/manage_blog.feature
blog_logic-1.4.10 features/manage_blog.feature
blog_logic-1.4.9 features/manage_blog.feature
blog_logic-1.4.8 features/manage_blog.feature
blog_logic-1.4.7 features/manage_blog.feature
blog_logic-1.4.6 features/manage_blog.feature
blog_logic-1.4.5 features/manage_blog.feature
blog_logic-1.4.4 features/manage_blog.feature
blog_logic-1.4.3 features/manage_blog.feature
blog_logic-1.4.2 features/manage_blog.feature
blog_logic-1.4.1 features/manage_blog.feature
blog_logic-1.4.0 features/manage_blog.feature
blog_logic-1.3.1 features/manage_blog.feature
blog_logic-1.3.0 features/manage_blog.feature
blog_logic-1.2.4 features/manage_blog.feature
blog_logic-1.2.3 features/manage_blog.feature