Sha256: 29c484b77556d811538edee476ba95a663346e0267812911ecf5d7549bde319c

Contents?: true

Size: 677 Bytes

Versions: 2

Compression:

Stored size: 677 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    |
    | MongoMapper  | truncation    |
    | Mongoid      | truncation    |
    #    | CouchPotato  | truncation    |

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
rails-uploader-0.0.4 vendor/bundle/ruby/1.9.1/gems/database_cleaner-0.8.0/features/cleaning.feature
database_cleaner-0.8.0 features/cleaning.feature