Sha256: 3884abd4b62049665b4a46d96b7eaa664f7a8d80d050ccd19dcc9bc8b188ab5b
Contents?: true
Size: 934 Bytes
Versions: 19
Compression:
Stored size: 934 Bytes
Contents
Feature: database cleaning 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 <ORM> 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 | | DataMapper | transaction | | DataMapper | truncation | | Sequel | transaction | | Sequel | truncation | | Sequel | deletion | | MongoMapper | truncation | | Mongoid | truncation | | CouchPotato | truncation | | Redis | truncation | | Ohm | truncation | | Neo4j | deletion | | Neo4j | truncation | | Neo4j | transaction |
Version data entries
19 entries across 19 versions & 3 rubygems