Sha256: 0f40f0b2dc6e9f42ebfc4a6a5e8ea77d349fedaacaff7107684d241682cb544b

Contents?: true

Size: 972 Bytes

Versions: 2

Compression:

Stored size: 972 Bytes

Contents

Feature: database cleaning using multiple ORMs
  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 <ORM1> and <ORM2>

    When I run my scenarios that rely on clean databases using multiple orms
    Then I should see all green

  Examples:
    | ORM1         | ORM2         |
    | ActiveRecord | DataMapper   |
    | ActiveRecord | MongoMapper  |
    | ActiveRecord | Mongoid      |
    #| ActiveRecord | CouchPotato  |
    | DataMapper   | ActiveRecord |
    | DataMapper   | MongoMapper  |
    | DataMapper   | Mongoid      |
    #| DataMapper   | CouchPotato  |
    | MongoMapper  | ActiveRecord |
    | MongoMapper  | DataMapper   |
    | MongoMapper  | Mongoid      |
    #| MongoMapper  | CouchPotato  |
    #    | CouchPotato  | ActiveRecord |
    #| CouchPotato  | DataMapper   |
    #| CouchPotato  | MongoMapper  |
    #| CouchPotato  | Mongoid      |

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_multiple_orms.feature
database_cleaner-0.8.0 features/cleaning_multiple_orms.feature