aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/CHANGELOG.md
diff options
context:
space:
mode:
authorVlado Cingel <vladocingel@gmail.com>2019-07-26 00:41:15 +0200
committerVlado Cingel <vladocingel@gmail.com>2019-07-26 00:41:15 +0200
commit10d0f48ad8c42b13738fade4c79b7275cfb7380d (patch)
tree078e5b00688181f137cd979dcb0f59c5fdb31b53 /activejob/CHANGELOG.md
parentc9b7b9ff8adb3f01db0f9af90359030028a33b5b (diff)
downloadrails-10d0f48ad8c42b13738fade4c79b7275cfb7380d.tar.gz
rails-10d0f48ad8c42b13738fade4c79b7275cfb7380d.tar.bz2
rails-10d0f48ad8c42b13738fade4c79b7275cfb7380d.zip
Ability to test activejobs with relative delay
`assert_enqueued_with` and `assert_performed_with` were not able to properly test jobs with relative delay. `:at` option was asserted for equality and test will always fail cause small fraction of time will pass between job call and assertion. This commit fixes that by droping microseconds from `:at` argument assertions.
Diffstat (limited to 'activejob/CHANGELOG.md')
-rw-r--r--activejob/CHANGELOG.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/activejob/CHANGELOG.md b/activejob/CHANGELOG.md
index 2f0d72ccb9..542a4eb2db 100644
--- a/activejob/CHANGELOG.md
+++ b/activejob/CHANGELOG.md
@@ -1,3 +1,6 @@
+* `assert_enqueued_with` and `assert_performed_with` can now test jobs with relative delay.
+
+ *Vlado Cingel*
Please check [6-0-stable](https://github.com/rails/rails/blob/6-0-stable/activejob/CHANGELOG.md) for previous changes.