transactions_should_rollback.feature

features/transactions/transactions_should_rollback.feature
Last Update: Sun Feb 15 10:52:45 -0600 2009

Story: transactions should rollback in plain text

As an RSpec/Rails Story author
I want transactions to roll back between scenarios in plain text
So that I can have confidence in the state of the database

Scenario: add one Person
  When I add a Person
  Then there should be one person

Scenario: add one Person for the second time
  When I add a Person
  Then there should be one person

Scenario: add yet another person
  When I add a Person
  Then there should be one person