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