psenv/spec/rails/test/test_helper.rb
Andrew Tomaka bd72d2a64f
Add sample Rails application (#9)
* Add rails application
* Run tests for sample Rails app
2019-10-09 22:25:20 -04:00

11 lines
310 B
Ruby

ENV['RAILS_ENV'] ||= 'test'
require_relative '../config/environment'
require 'rails/test_help'
require 'minitest/spec'
class ActiveSupport::TestCase
# Run tests in parallel with specified workers
parallelize(workers: :number_of_processors)
# Add more helper methods to be used by all tests here...
end