database_cleaner/features/cleaning.feature

21 lines
598 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-26 23:42:20 -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 |
| ActiveRecord | truncation |
| DataMapper | transaction |
2009-12-23 13:54:17 -05:00
| DataMapper | truncation |
| MongoMapper | truncation |
| CouchPotato | truncation |