14 lines
276 B
Ruby
14 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.configure do |config|
|
|
config.before :suite do
|
|
DatabaseCleaner.strategy = :transaction
|
|
DatabaseCleaner.clean_with :truncation
|
|
end
|
|
|
|
config.around do |example|
|
|
DatabaseCleaner.cleaning do
|
|
example.run
|
|
end
|
|
end
|
|
end
|