database_cleaner/features/cleaning.feature

23 lines
672 B
Gherkin
Raw Normal View History

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-27 04:42:20 +00: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 |
| ActiveRecord | truncation |
| ActiveRecord | deletion |
| DataMapper | transaction |
2009-12-23 18:54:17 +00:00
| DataMapper | truncation |
| MongoMapper | truncation |
2010-04-13 15:50:25 +00:00
| Mongoid | truncation |
| CouchPotato | truncation |