Created
November 27, 2011 10:50
-
-
Save rhysforyou/1397385 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: Book list | |
| The main purpose of this app is to help a user manage a book list. This | |
| consists of books they'd like to read, books they're reading and books | |
| they've read. | |
| Background: | |
| Given I am logged in | |
| Scenario: Add a book to the book list | |
| The user should be presented with a form that asks them for the book's | |
| title and author. When they fill these two out and submit the form they | |
| should see that book in their book list. | |
| Given the new book form | |
| When I fill in the form as follows: | |
| | Title | A Great Book | | |
| | Author | A.G. Author | | |
| Then I should see "A Great Book by A.G. Author" in my book list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment