aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-06-29 14:52:26 +0200
committerGitHub <noreply@github.com>2018-06-29 14:52:26 +0200
commit1f4202611cae45ca9047d9fec73a7b631e934fa7 (patch)
treecf1bdafc1d211f152bb498b9218fbbe83bdcd408 /activejob/CHANGELOG.md
parentb906ee59c0d6436f2801e23093d89d59d7fa447d (diff)
parent4382fcbc22e6d7a30a7c7514ea531209ffc347dd (diff)
downloadrails-1f4202611cae45ca9047d9fec73a7b631e934fa7.tar.gz
rails-1f4202611cae45ca9047d9fec73a7b631e934fa7.tar.bz2
rails-1f4202611cae45ca9047d9fec73a7b631e934fa7.zip
Merge pull request #33258 from bogdanvlviv/allow-callassert_enqueued_with-with-no-block
Allow call `assert_enqueued_with` and `assert_enqueued_email_with` with no block
Diffstat (limited to 'activejob/CHANGELOG.md')
-rw-r--r--activejob/CHANGELOG.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md
index f9cb0e204d..fea837585f 100644
--- a/activejob/CHANGELOG.md
+++ b/activejob/CHANGELOG.md
@@ -1,3 +1,18 @@
+* Allow call `assert_enqueued_with` with no block.
+
+ Example:
+ ```
+ def test_assert_enqueued_with
+ MyJob.perform_later(1,2,3)
+ assert_enqueued_with(job: MyJob, args: [1,2,3], queue: 'low')
+
+ MyJob.set(wait_until: Date.tomorrow.noon).perform_later
+ assert_enqueued_with(job: MyJob, at: Date.tomorrow.noon)
+ end
+ ```
+
+ *bogdanvlviv*
+
* Allow passing multiple exceptions to `retry_on`, and `discard_on`.
*George Claghorn*