File: cleaning_default_strategy.feature

package info (click to toggle)
ruby-database-cleaner 1.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 768 kB
  • sloc: ruby: 4,854; makefile: 10; sh: 4
file content (23 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Feature: database cleaning
  In order to ease example and feature writing
  As a developer
  I want to have my database in a clean state with default strategy

  Scenario Outline: ruby app
    Given I am using <ORM>
    And the default cleaning strategy

    When I run my scenarios that rely on a clean database
    Then I should see all green

  Examples:
    | ORM          |
    | ActiveRecord |
    | DataMapper   |
    | Sequel       |
    | MongoMapper  |
    | Mongoid      |
    | CouchPotato  |
    | Redis        |
    | Ohm          |
    | Neo4j        |