Skip to content
Snippets Groups Projects
test_helper.rb 291 B
Newer Older
Sébastien Gaya's avatar
Sébastien Gaya committed
require 'simplecov'
SimpleCov.start 'rails'

Arnaud Levy's avatar
Arnaud Levy committed
ENV['RAILS_ENV'] ||= 'test'
require_relative "../config/environment"
require "rails/test_help"

pabois's avatar
pabois committed
Dir["./test/support/**/*.rb"].each { |f| require f }

Arnaud Levy's avatar
Arnaud Levy committed
class ActiveSupport::TestCase
  parallelize(workers: :number_of_processors)
  fixtures :all
end