2010-05-16 21:23:25 +01:00
|
|
|
Feature: multiple database cleaning
|
|
|
|
In order to ease example and feature writing
|
|
|
|
As a developer
|
2010-05-18 07:52:03 +01:00
|
|
|
I want to have my databases in a clean state
|
2010-05-16 21:23:25 +01:00
|
|
|
|
|
|
|
Scenario Outline: ruby app
|
|
|
|
Given I am using <ORM>
|
|
|
|
And the <Strategy> cleaning strategy
|
|
|
|
|
2010-05-18 07:52:03 +01:00
|
|
|
When I run my scenarios that rely on clean databases
|
2010-05-16 21:23:25 +01:00
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
2010-05-18 07:52:03 +01:00
|
|
|
| ORM | Strategy |
|
|
|
|
| ActiveRecord | truncation |
|
|
|
|
| DataMapper | truncation |
|
2010-05-30 23:08:22 +01:00
|
|
|
# | ActiveRecord | transaction |
|
|
|
|
# | MongoMapper | truncation |
|
|
|
|
# | DataMapper | transaction | # Tickers are ugly...and betty don't like ugly... otherwise known as this is fubar
|