Oban.Testing.refute_enqueued
You're seeing just the function
refute_enqueued
, go back to Oban.Testing module for more information.
Specs
Refute that a job with particular options has been enqueued.
See assert_enqueued/2
for additional details.
Specs
refute_enqueued(repo :: module(), opts :: Keyword.t(), timeout :: pos_integer()) :: false
Refute that a job with particular options is or will be enqueued within a timeout period.
The minimum refute timeout is 10ms.
See assert_enqueued/2
for additional details.
Examples
Refute that a job will not be enqueued in the next 100ms:
refute_enqueued [worker: MyWorker], 100