1ENV["RAILS_ENV"] ||= "test"
2require_relative "../config/environment"
3require "rails/test_help"
4
5module ActiveSupport
6 class TestCase
7 # Run tests in parallel with specified workers
8 parallelize(workers: :number_of_processors)
9
10 # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
11 fixtures :all
12
13 # Add more helper methods to be used by all tests here...
14 end
15end