Files
fizzy/test/test_helper.rb
T
David Heinemeier Hansson 883a225946 Use upstreamed assert_in_body
2025-04-19 10:08:08 +02:00

16 lines
412 B
Ruby

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
include CardTestHelper, ChangeTestHelper, SessionTestHelper
end
end