mirror of
				https://github.com/DatabaseCleaner/database_cleaner
				synced 2023-03-27 23:22:03 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			663 B
		
	
	
	
		
			Gherkin
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			663 B
		
	
	
	
		
			Gherkin
		
	
	
	
	
	
Feature: multiple database cleaning
 | 
						|
  In order to ease example and feature writing
 | 
						|
  As a developer
 | 
						|
  I want to have my databases 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 clean databases
 | 
						|
    Then I should see all green
 | 
						|
 | 
						|
  Examples:
 | 
						|
  | ORM          | Strategy      |
 | 
						|
  | ActiveRecord | truncation    |
 | 
						|
  | ActiveRecord | deletion      |
 | 
						|
  | DataMapper   | truncation    |
 | 
						|
  | Sequel       | truncation    |
 | 
						|
  | MongoMapper  | truncation    |
 | 
						|
  | DataMapper   | transaction   |
 | 
						|
  | ActiveRecord | transaction   |
 | 
						|
  | Sequel       | transaction   |
 |