2022-04-19 02:37:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-03-30 22:12:56 -05:00
|
|
|
ENV['RAILS_ENV'] ||= 'test'
|
|
|
|
require_relative '../config/environment'
|
|
|
|
require 'rails/test_help'
|
|
|
|
|
2022-04-19 02:37:27 -05:00
|
|
|
module ActiveSupport
|
|
|
|
class TestCase
|
|
|
|
# Setup all fixtures in test/fixtures/*.yml for all tests in alphabetical order.
|
|
|
|
fixtures :all
|
2022-03-30 22:12:56 -05:00
|
|
|
|
2022-04-19 02:37:27 -05:00
|
|
|
# Add more helper methods to be used by all tests here...
|
|
|
|
end
|
2022-03-30 22:12:56 -05:00
|
|
|
end
|