Sha256: a28b0c526251749441fc9f3f11272b6e50fddcc98213b803205e22c56074fb1e
Contents?: true
Size: 611 Bytes
Versions: 39
Compression:
Stored size: 611 Bytes
Contents
ENV["RAILS_ENV"] ||= "test" require_relative "../config/environment" require "rails/test_help" module ActiveSupport class TestCase # Run tests in parallel with specified workers <% if Process.respond_to?(:fork) && !Gem.win_platform? -%> parallelize(workers: :number_of_processors) <%- else -%> parallelize(workers: :number_of_processors, with: :threads) <% end -%> <% unless options[:skip_active_record] -%> # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. fixtures :all <% end -%> # Add more helper methods to be used by all tests here... end end
Version data entries
39 entries across 39 versions & 5 rubygems