diff options
| author | realtradam <[email protected]> | 2024-03-09 16:02:59 -0500 |
|---|---|---|
| committer | realtradam <[email protected]> | 2024-03-09 16:02:59 -0500 |
| commit | fdd9a2ef16b9401048f0c6b743c09ddcb52a8516 (patch) | |
| tree | 434ffb70536b5a72efcee3ed6b46275ced0d5e27 /test/test_helper.rb | |
| download | gameHolster-fdd9a2ef16b9401048f0c6b743c09ddcb52a8516.tar.gz gameHolster-fdd9a2ef16b9401048f0c6b743c09ddcb52a8516.zip | |
The site is born
Diffstat (limited to 'test/test_helper.rb')
| -rw-r--r-- | test/test_helper.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/test_helper.rb b/test/test_helper.rb new file mode 100644 index 0000000..0c22470 --- /dev/null +++ b/test/test_helper.rb @@ -0,0 +1,15 @@ +ENV["RAILS_ENV"] ||= "test" +require_relative "../config/environment" +require "rails/test_help" + +module ActiveSupport + class TestCase + # Run tests in parallel with specified workers + parallelize(workers: :number_of_processors) + + # Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order. + fixtures :all + + # Add more helper methods to be used by all tests here... + end +end |
