2009-03-03 23:53:21 -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
|
2009-02-26 23:42:20 -05:00
|
|
|
|
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 <Strategy> cleaning strategy
|
|
|
|
|
|
|
|
When I run my scenarios that rely on a clean database
|
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
| ORM | Strategy |
|
|
|
|
| ActiveRecord | transaction |
|
|
|
|
| ActiveRecord | truncation |
|
|
|
|
| ActiveRecord | deletion |
|
2018-05-25 23:12:59 -04:00
|
|
|
| CouchPotato | truncation |
|
2018-05-25 23:36:08 -04:00
|
|
|
| DataMapper | transaction |
|
|
|
|
| DataMapper | truncation |
|
2018-05-26 02:38:08 -04:00
|
|
|
| Mongoid | truncation |
|
2018-05-26 02:48:30 -04:00
|
|
|
| MongoMapper | truncation |
|
2018-05-26 03:00:18 -04:00
|
|
|
| Neo4j | deletion |
|
|
|
|
| Neo4j | truncation |
|
|
|
|
| Neo4j | transaction |
|
2018-05-26 03:11:48 -04:00
|
|
|
| Ohm | truncation |
|
2018-05-26 03:23:39 -04:00
|
|
|
| Redis | truncation |
|
2018-05-26 03:33:38 -04:00
|
|
|
| Sequel | transaction |
|
|
|
|
| Sequel | truncation |
|
|
|
|
| Sequel | deletion |
|
2018-05-18 22:16:03 -04:00
|
|
|
|
2009-03-03 23:53:21 -05:00
|
|
|
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
|
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
2013-05-11 09:16:01 -04:00
|
|
|
| ORM | Strategy |
|
|
|
|
| ActiveRecord | transaction |
|
|
|
|
| ActiveRecord | truncation |
|
|
|
|
| ActiveRecord | deletion |
|
|
|
|
| DataMapper | transaction |
|
|
|
|
| DataMapper | truncation |
|
2014-12-22 04:27:53 -05:00
|
|
|
| Sequel | transaction |
|
|
|
|
| Sequel | truncation |
|
|
|
|
| Sequel | deletion |
|
2013-05-11 09:16:01 -04:00
|
|
|
| MongoMapper | truncation |
|
|
|
|
| Mongoid | truncation |
|
|
|
|
| CouchPotato | truncation |
|
|
|
|
| Redis | truncation |
|
|
|
|
| Ohm | truncation |
|
2014-12-01 11:19:27 -05:00
|
|
|
| Neo4j | deletion |
|
|
|
|
| Neo4j | truncation |
|
|
|
|
| Neo4j | transaction |
|