mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
multiple databases cleaning feature, failing
This commit is contained in:
parent
7ee7654c48
commit
b723ed8bda
1 changed files with 9 additions and 9 deletions
|
@ -1,20 +1,20 @@
|
|||
Feature: multiple database cleaning
|
||||
In order to ease example and feature writing
|
||||
As a developer
|
||||
I want to have my database in a clean state
|
||||
I want to have my databases in a clean state
|
||||
|
||||
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
|
||||
When I run my scenarios that rely on clean databases
|
||||
Then I should see all green
|
||||
|
||||
Examples:
|
||||
| ORM 1 | ORM2 |
|
||||
| ActiveRecord | DataMapper |
|
||||
| ActiveRecord | MongoMapper |
|
||||
| DataMapper | MongoMapper |
|
||||
| DataMapper | CouchPotato |
|
||||
| MongoMapper | CouchPotato |
|
||||
| CouchPotato | ActiveRecord |
|
||||
| ORM | Strategy |
|
||||
| ActiveRecord | transaction |
|
||||
| ActiveRecord | truncation |
|
||||
| DataMapper | transaction |
|
||||
| DataMapper | truncation |
|
||||
# | MongoMapper | truncation |
|
||||
# | CouchPotato | truncation |
|
||||
|
|
Loading…
Reference in a new issue