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 |
|
2010-10-25 12:10:08 -04:00
|
|
|
| ActiveRecord | deletion |
|
2010-05-18 02:52:03 -04:00
|
|
|
| DataMapper | truncation |
|
2014-12-22 04:33:13 -05:00
|
|
|
| Sequel | truncation |
|
2010-08-22 16:28:28 -04:00
|
|
|
| MongoMapper | truncation |
|
|
|
|
| DataMapper | transaction |
|
2012-08-25 14:14:22 -04:00
|
|
|
| ActiveRecord | transaction |
|
2014-12-22 04:33:13 -05:00
|
|
|
| Sequel | transaction |
|