multiple databases cleaning feature, failing

This commit is contained in:
Jon Rowe 2010-05-18 07:52:03 +01:00
parent 7ee7654c48
commit b723ed8bda
1 changed files with 9 additions and 9 deletions

View File

@ -1,20 +1,20 @@
Feature: multiple database cleaning Feature: multiple database cleaning
In order to ease example and feature writing In order to ease example and feature writing
As a developer 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 Scenario Outline: ruby app
Given I am using <ORM> Given I am using <ORM>
And the <Strategy> cleaning strategy 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 Then I should see all green
Examples: Examples:
| ORM 1 | ORM2 | | ORM | Strategy |
| ActiveRecord | DataMapper | | ActiveRecord | transaction |
| ActiveRecord | MongoMapper | | ActiveRecord | truncation |
| DataMapper | MongoMapper | | DataMapper | transaction |
| DataMapper | CouchPotato | | DataMapper | truncation |
| MongoMapper | CouchPotato | # | MongoMapper | truncation |
| CouchPotato | ActiveRecord | # | CouchPotato | truncation |