2009-03-03 23:53:21 -05:00
|
|
|
Feature: database cleaning
|
|
|
|
In order to ease example and feature writing
|
|
|
|
As a developer
|
|
|
|
I want to have my database in a clean state
|
2009-02-26 23:42:20 -05:00
|
|
|
|
2009-03-03 23:53:21 -05:00
|
|
|
Scenario Outline: ruby app
|
|
|
|
Given I am using <ORM>
|
|
|
|
And the <Strategy> cleaning strategy
|
|
|
|
|
|
|
|
When I run my scenarios that rely on a clean database
|
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
| ORM | Strategy |
|
|
|
|
| ActiveRecord | transaction |
|
2009-03-04 15:18:13 -05:00
|
|
|
| ActiveRecord | truncation |
|
2009-05-05 11:06:02 -04:00
|
|
|
| DataMapper | transaction |
|
2009-12-23 13:54:17 -05:00
|
|
|
| DataMapper | truncation |
|
|
|
|
| MongoMapper | truncation |
|
2010-02-03 20:17:37 -05:00
|
|
|
| CouchPotato | truncation |
|