mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
31 lines
No EOL
986 B
Ruby
31 lines
No EOL
986 B
Ruby
|
|
Given /^I am using (ActiveRecord|DataMapper|MongoMapper|CouchPotato)$/ do |orm|
|
|
@feature_runner = FeatureRunner.new
|
|
@feature_runner.orm = orm
|
|
end
|
|
|
|
Given /^I am using (ActiveRecord|DataMapper|MongoMapper|CouchPotato) and (ActiveRecord|DataMapper|MongoMapper|CouchPotato)$/ do |orm1,orm2|
|
|
@feature_runner = FeatureRunner.new
|
|
@feature_runner.orm = orm1
|
|
@feature_runner.another_orm = orm2
|
|
end
|
|
|
|
Given /^the (.+) cleaning strategy$/ do |strategy|
|
|
@feature_runner.strategy = strategy
|
|
end
|
|
|
|
When "I run my scenarios that rely on a clean database" do
|
|
@feature_runner.go 'example'
|
|
end
|
|
|
|
When "I run my scenarios that rely on clean databases using multiple orms" do
|
|
@feature_runner.go 'example_multiple_orms'
|
|
end
|
|
|
|
When "I run my scenarios that rely on clean databases using multiple orms" do
|
|
@feature_runner.go 'example_multiple_orms'
|
|
end
|
|
|
|
Then "I should see all green" do
|
|
fail "Feature failed with :#{@feature_runner.output}" unless @feature_runner.exit_status == 0
|
|
end |