instance method
require_active_job_test_adapter!
Ruby on Rails 8.0.4
Since v7.2.3 PrivateSignature
require_active_job_test_adapter!(method)
No documentation comment.
Parameters
-
methodreq
Source
# File activejob/lib/active_job/test_helper.rb, line 666
def require_active_job_test_adapter!(method)
unless using_test_adapter?
raise ArgumentError.new("#{method} requires the Active Job test adapter, you're using #{queue_adapter.class.name}.")
end
end
Defined in activejob/lib/active_job/test_helper.rb line 666
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveJob::TestHelper