database_cleaner/features/cleaning.feature

28 lines
829 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 |
| ActiveRecord | deletion |
| DataMapper | transaction |
| DataMapper | truncation |
| MongoMapper | truncation |
| Mongoid | truncation |
| CouchPotato | truncation |
| Redis | truncation |
| Ohm | truncation |
2014-12-01 11:19:27 -05:00
| Neo4j | deletion |
| Neo4j | truncation |
| Neo4j | transaction |