database_cleaner/features/step_definitions/database_cleaner_steps.rb

26 lines
586 B
Ruby

Given /^I am using (ActiveRecord|DataMapper)$/ do |orm|
@orm = orm
end
Given /^the (.+) cleaning strategy$/ do |strategy|
@strategy = strategy
end
When "I run my scenarios that rely on a clean database" do
full_dir ||= File.expand_path(File.dirname(__FILE__) + "/../../examples/")
Dir.chdir(full_dir) do
ENV['ORM'] = @orm.downcase
ENV['STRATEGY'] = @strategy
@out = `cucumber features`
@status = $?.exitstatus
end
end
Then "I should see all green" do
unless @status == 0
raise "Expected to see all green but we saw FAIL! Output:\n#{@out}"
end
end