Skip to content

Instantly share code, notes, and snippets.

@rowanoulton
Created October 6, 2015 12:40
Show Gist options
  • Save rowanoulton/8afa26dce0a9da623b7d to your computer and use it in GitHub Desktop.
Save rowanoulton/8afa26dce0a9da623b7d to your computer and use it in GitHub Desktop.
# spec/rails_helper.rb
config.before(:suite) do
DatabaseCleaner.strategy = :transaction
DatabaseCleaner.clean_with(:truncation)
end
config.around(:each) do |example|
DatabaseCleaner.cleaning do
example.run
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment