Sha256: 5a56e1d96ee565cb34d35a031359a3f8b4244b0628efdfee1fbaf626db33120f

Contents?: true

Size: 598 Bytes

Versions: 2

Compression:

Stored size: 598 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    |
    | DataMapper   | transaction   |
    | DataMapper   | truncation    |
    | MongoMapper  | truncation    |
    | CouchPotato  | truncation    |

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
jonrowe-database_cleaner-0.5.2 features/cleaning.feature
database_cleaner-0.5.0 features/cleaning.feature