mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Add missing require to ActiveJob::TestHelper
Following PR #40780, it now fails after requiring active_job: irb(main):001:0> require 'active_job' => true irb(main):002:0> ActiveJob::VERSION::STRING => "6.1.1" irb(main):003:0> ActiveJob::TestHelper [redacted] NameError (uninitialized constant ActiveSupport::Testing)
This commit is contained in:
parent
beed933b9b
commit
d318af93c5
1 changed files with 1 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "active_support/core_ext/class/subclasses"
|
||||
require "active_support/testing/assertions"
|
||||
|
||||
module ActiveJob
|
||||
# Provides helper methods for testing Active Job
|
||||
|
|
Loading…
Reference in a new issue