Hello kosmos.
This commit is contained in:
19
spec/support/database_cleaner.rb
Normal file
19
spec/support/database_cleaner.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
RSpec.configure do |config|
|
||||
|
||||
config.before(:suite) do
|
||||
DatabaseCleaner.clean_with :truncation, except: %w(ar_internal_metadata)
|
||||
end
|
||||
|
||||
config.before(:each) do
|
||||
DatabaseCleaner.strategy = :transaction
|
||||
end
|
||||
|
||||
config.before(:each) do
|
||||
DatabaseCleaner.start
|
||||
end
|
||||
|
||||
config.after(:each) do
|
||||
DatabaseCleaner.clean
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user