2010-05-16 16:23:25 -04:00
|
|
|
Feature: multiple database cleaning
|
|
|
|
In order to ease example and feature writing
|
|
|
|
As a developer
|
2010-05-18 02:52:03 -04:00
|
|
|
I want to have my databases in a clean state
|
2010-05-16 16:23:25 -04: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 clean databases
|
|
|
|
Then I should see all green
|
|
|
|
|
|
|
|
Examples:
|
2020-04-05 15:05:02 -04:00
|
|
|
| ORM | Strategy |
|
|
|
|
| ActiveRecord | truncation |
|
|
|
|
| ActiveRecord | deletion |
|
|
|
|
| ActiveRecord | transaction |
|
|
|
|
| Redis | truncation |
|
2018-05-18 22:16:03 -04:00
|
|
|
|