2009-03-03 21:53:21 -07: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 21:42:20 -07:00
|
|
|
|
2009-03-03 21:53:21 -07: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 13:18:13 -07:00
|
|
|
| ActiveRecord | truncation |
|
2010-10-25 10:10:08 -06:00
|
|
|
| ActiveRecord | deletion |
|
2009-05-05 17:06:02 +02:00
|
|
|
| DataMapper | transaction |
|
2009-12-23 13:54:17 -05:00
|
|
|
| DataMapper | truncation |
|
|
|
|
| MongoMapper | truncation |
|
2010-04-13 09:50:25 -06:00
|
|
|
| Mongoid | truncation |
|
2010-02-04 02:17:37 +01:00
|
|
|
| CouchPotato | truncation |
|