database_cleaner/features/cleaning_default_strategy.feature
James Conroy-Finn b70f09a3ed Add Redis & Ohm support
This contains the work of @hbpoison, updated to work with the current
version of DatabaseCleaner.

https://github.com/bmabey/database_cleaner/pull/87/files
2013-05-11 14:21:43 +01:00

21 lines
526 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 |
| Redis |
| Ohm |