database_cleaner/features/cleaning_default_strategy.feature
Prem Sichanugrist 56ca7001d4 Add support for default strategy for each ORM
DatabaseCleaner will select the best default strategy based on the ORM you're using without having you to select it by yourself.

* ActiveRecord, DataMapper => :transaction
* MongoMapper, Mongoid, CouchPotato => :truncation
2011-01-16 23:41:10 +07:00

19 lines
484 B
Gherkin

Feature: database cleaning
In order to ease example and feature writing
As a developer
I want to have my database in a clean state with default strategy
Scenario Outline: ruby app
Given I am using <ORM>
And the default cleaning strategy
When I run my scenarios that rely on a clean database
Then I should see all green
Examples:
| ORM |
| ActiveRecord |
| DataMapper |
| MongoMapper |
| Mongoid |
| CouchPotato |