Skip to content

Instantly share code, notes, and snippets.

@rhysforyou
Created November 27, 2011 10:50
Show Gist options
  • Select an option

  • Save rhysforyou/1397385 to your computer and use it in GitHub Desktop.

Select an option

Save rhysforyou/1397385 to your computer and use it in GitHub Desktop.
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