Created
February 6, 2012 04:08
-
-
Save madelinecr/1749523 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Manage Blog Posts | |
In order to make a blog | |
I want to create and manage articles | |
Scenario: Posts List | |
Given I have posts titled Foo, Bar | |
When I visit posts | |
Then I should see Foo, Bar | |
Scenario: Create a Post | |
Given I visit the new post page | |
And I fill in the title with Unicorns! | |
And I click submit | |
Then I should see Unicorns! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment