Archived
1
0
Fork 0
This repository has been archived on 2023-03-14. You can view files and clone it, but cannot push or open issues or pull requests.
psenv-test/test/test_helper.rb
Andrew Tomaka 4d2661ec5e
Setup project for testing
* Remove unecessary parts of Rails
* Write tests
* Document usage
2019-10-04 23:08:40 -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