mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
add multiple orm testing for sequel and default strategy
This commit is contained in:
parent
7d4d8868f6
commit
c0f4f95841
3 changed files with 18 additions and 0 deletions
|
@ -14,6 +14,7 @@ Feature: database cleaning
|
|||
| ORM |
|
||||
| ActiveRecord |
|
||||
| DataMapper |
|
||||
| Sequel |
|
||||
| MongoMapper |
|
||||
| Mongoid |
|
||||
| CouchPotato |
|
||||
|
|
|
@ -15,6 +15,8 @@ Feature: multiple database cleaning
|
|||
| ActiveRecord | truncation |
|
||||
| ActiveRecord | deletion |
|
||||
| DataMapper | truncation |
|
||||
| Sequel | truncation |
|
||||
| MongoMapper | truncation |
|
||||
| DataMapper | transaction |
|
||||
| ActiveRecord | transaction |
|
||||
| Sequel | transaction |
|
||||
|
|
|
@ -12,41 +12,56 @@ Feature: database cleaning using multiple ORMs
|
|||
Examples:
|
||||
| ORM1 | ORM2 |
|
||||
| ActiveRecord | DataMapper |
|
||||
| ActiveRecord | Sequel |
|
||||
| ActiveRecord | MongoMapper |
|
||||
| ActiveRecord | Mongoid |
|
||||
| ActiveRecord | CouchPotato |
|
||||
| ActiveRecord | Ohm |
|
||||
| ActiveRecord | Redis |
|
||||
| DataMapper | ActiveRecord |
|
||||
| DataMapper | Sequel |
|
||||
| DataMapper | MongoMapper |
|
||||
| DataMapper | Mongoid |
|
||||
| DataMapper | CouchPotato |
|
||||
| DataMapper | Ohm |
|
||||
| DataMapper | Redis |
|
||||
| Sequel | ActiveRecord |
|
||||
| Sequel | DataMapper |
|
||||
| Sequel | MongoMapper |
|
||||
| Sequel | Mongoid |
|
||||
| Sequel | CouchPotato |
|
||||
| Sequel | Ohm |
|
||||
| Sequel | Redis |
|
||||
| MongoMapper | ActiveRecord |
|
||||
| MongoMapper | DataMapper |
|
||||
| MongoMapper | Sequel |
|
||||
| MongoMapper | Mongoid |
|
||||
| MongoMapper | CouchPotato |
|
||||
| MongoMapper | Ohm |
|
||||
| MongoMapper | Redis |
|
||||
| CouchPotato | ActiveRecord |
|
||||
| CouchPotato | DataMapper |
|
||||
| CouchPotato | Sequel |
|
||||
| CouchPotato | MongoMapper |
|
||||
| CouchPotato | Mongoid |
|
||||
| CouchPotato | Ohm |
|
||||
| CouchPotato | Redis |
|
||||
| Ohm | ActiveRecord |
|
||||
| Ohm | DataMapper |
|
||||
| Ohm | Sequel |
|
||||
| Ohm | MongoMapper |
|
||||
| Ohm | Mongoid |
|
||||
| Ohm | CouchPotato |
|
||||
| Redis | ActiveRecord |
|
||||
| Redis | DataMapper |
|
||||
| Redis | Sequel |
|
||||
| Redis | MongoMapper |
|
||||
| Redis | Mongoid |
|
||||
| Redis | CouchPotato |
|
||||
| Redis | Ohm |
|
||||
| Neo4j | ActiveRecord |
|
||||
| Neo4j | DataMapper |
|
||||
| Neo4j | Sequel |
|
||||
| Neo4j | Redis |
|
||||
| Neo4j | Ohm |
|
||||
| Neo4j | MongoMapper |
|
||||
|
|
Loading…
Reference in a new issue