We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f17f2d1 commit 8e0a391Copy full SHA for 8e0a391
guides/CHANGELOG.md
@@ -1,3 +1,8 @@
1
+* In the Active Job bug report template set the queue adapter to the
2
+ test adapter so that `assert_enqueued_with` can pass.
3
+
4
+ *Andrew White*
5
6
* Ensure all bug report templates set `config.secret_key_base` to avoid
7
generation of `tmp/local_secret.txt` files when running the report template.
8
guides/bug_report_templates/active_job.rb
@@ -17,6 +17,7 @@ class TestApp < Rails::Application
17
config.load_defaults Rails::VERSION::STRING.to_f
18
config.eager_load = false
19
config.secret_key_base = "secret_key_base"
20
+ config.active_job.queue_adapter = :test
21
22
config.logger = Logger.new($stdout)
23
end
0 commit comments