2010-05-16 16:23:25 -04:00
|
|
|
Feature: database cleaning using multiple ORMs
|
|
|
|
In order to ease example and feature writing
|
|
|
|
As a developer
|
|
|
|
I want to have my database in a clean state
|
|
|
|
|
|
|
|
Scenario Outline: ruby app
|
|
|
|
Given I am using <ORM1> and <ORM2>
|
|
|
|
|
2010-05-16 16:55:09 -04:00
|
|
|
When I run my scenarios that rely on clean databases using multiple orms
|
2010-05-16 16:23:25 -04:00
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
| ORM1 | ORM2 |
|
|
|
|
| ActiveRecord | DataMapper |
|
|
|
|
| ActiveRecord | MongoMapper |
|
|
|
|
| DataMapper | MongoMapper |
|
|
|
|
| DataMapper | CouchPotato |
|
|
|
|
| MongoMapper | CouchPotato |
|
|
|
|
| CouchPotato | ActiveRecord |
|