require 'database_cleaner'
CLEAN_OPTIONS = {
except: %w(
),
}
STRATEGY =
if ENV['NO_TRANSACTION']
else
end
RSpec.configure do |config|
config.use_instantiated_fixtures = false
# This belongs into the spec_helper, but it needs to be done already here:
config.before(:suite) do
end
end
end
config.before(:each, :http_interaction) do
end
config.after(:each, :http_interaction) do
end
config.before(:each) do
end
config.after(:each) do
# Remove repositories and other data created in a test
dir.rmtree if dir.exist?
end
end
end
end
end