2011-01-16 11:34:45 -05:00
|
|
|
Feature: database cleaning
|
|
|
|
In order to ease example and feature writing
|
|
|
|
As a developer
|
|
|
|
I want to have my database in a clean state with default strategy
|
|
|
|
|
2018-05-18 22:16:03 -04:00
|
|
|
Scenario Outline: ruby app with adapter gems
|
|
|
|
Given I am using <ORM> from its adapter gem
|
|
|
|
And the default cleaning strategy
|
|
|
|
|
|
|
|
When I run my scenarios that rely on a clean database
|
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
| ORM |
|
|
|
|
| ActiveRecord |
|
2018-05-25 23:12:59 -04:00
|
|
|
| CouchPotato |
|
2018-05-25 23:36:08 -04:00
|
|
|
| DataMapper |
|
2018-05-26 02:38:08 -04:00
|
|
|
| Mongoid |
|
2018-05-26 02:48:30 -04:00
|
|
|
| MongoMapper |
|
2018-05-26 03:00:18 -04:00
|
|
|
| Neo4j |
|
2018-05-26 03:11:48 -04:00
|
|
|
| Ohm |
|
2018-05-18 22:16:03 -04:00
|
|
|
|
2011-01-16 11:34:45 -05:00
|
|
|
Scenario Outline: ruby app
|
|
|
|
Given I am using <ORM>
|
|
|
|
And the default cleaning strategy
|
|
|
|
|
|
|
|
When I run my scenarios that rely on a clean database
|
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
| ORM |
|
|
|
|
| ActiveRecord |
|
|
|
|
| DataMapper |
|
2014-12-22 04:33:13 -05:00
|
|
|
| Sequel |
|
2011-01-16 11:34:45 -05:00
|
|
|
| MongoMapper |
|
|
|
|
| Mongoid |
|
|
|
|
| CouchPotato |
|
2013-05-11 09:16:01 -04:00
|
|
|
| Redis |
|
|
|
|
| Ohm |
|
2014-12-01 11:19:27 -05:00
|
|
|
| Neo4j |
|