Sha256: 7fe8da6dc1ea019cce764c2e73f6ad0384823468dd15faa4405d87a9294502ad
Contents?: true
Size: 581 Bytes
Versions: 47
Compression:
Stored size: 581 Bytes
Contents
ENV['RAILS_ENV'] ||= 'test' require_relative '../config/environment' require 'rails/test_help' class ActiveSupport::TestCase # Run tests in parallel with specified workers <% if defined?(JRUBY_VERSION) || Gem.win_platform? -%> parallelize(workers: :number_of_processors, with: :threads) <%- else -%> parallelize(workers: :number_of_processors) <% 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
Version data entries
47 entries across 45 versions & 5 rubygems