mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix Active Job changelog formatting and reword a bit [ci skip]
This commit is contained in:
parent
e54719df66
commit
a22a653c29
1 changed files with 21 additions and 23 deletions
|
@ -1,6 +1,5 @@
|
||||||
* Add :only option to assert_enqueued_jobs
|
* Add `:only` option to `assert_enqueued_jobs`, to check the number of times
|
||||||
|
a specific kind of job is enqueued:
|
||||||
With the option, assert_enqueued_jobs will check the number of times a specific kind of job is enqueued:
|
|
||||||
|
|
||||||
def test_logging_job
|
def test_logging_job
|
||||||
assert_enqueued_jobs 1, only: LoggingJob do
|
assert_enqueued_jobs 1, only: LoggingJob do
|
||||||
|
@ -11,8 +10,7 @@
|
||||||
|
|
||||||
*George Claghorn*
|
*George Claghorn*
|
||||||
|
|
||||||
* `ActiveJob::Base.deserialize` delegates to the job class
|
* `ActiveJob::Base.deserialize` delegates to the job class.
|
||||||
|
|
||||||
|
|
||||||
Since `ActiveJob::Base#deserialize` can be overridden by subclasses (like
|
Since `ActiveJob::Base#deserialize` can be overridden by subclasses (like
|
||||||
`ActiveJob::Base#serialize`) this allows jobs to attach arbitrary metadata
|
`ActiveJob::Base#serialize`) this allows jobs to attach arbitrary metadata
|
||||||
|
|
Loading…
Reference in a new issue