-
-
Save vesh95/91bee6e9f17da36b22b4a83bc8ca2924 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
require 'rails_helper' | |
RSpec.configure do |config| | |
config.use_transactional_fixtures = false | |
# DatabaseCleaner settings | |
config.before(:suite) do | |
DatabaseCleaner.clean_with(:truncation) | |
# Ensure sphinx directories exist for the test environment | |
ThinkingSphinx::Test.init | |
# Configure and start Sphinx, and automatically stop Sphinx at the end of the test suite. | |
ThinkingSphinx::Test.start_with_autostop | |
end | |
config.before(:each) do | |
DatabaseCleaner.strategy = :transaction | |
end | |
config.before(:each, sphinx: true) do | |
DatabaseCleaner.strategy = :truncation | |
# Index data when running an acceptance spec. | |
ThinkingSphinx::Test.index | |
end | |
config.before(:each) do | |
DatabaseCleaner.start | |
end | |
config.after(:each) do | |
DatabaseCleaner.clean | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment