Queuetopia.Test.Assertions.refute_job_created
You're seeing just the function
refute_job_created
, go back to Queuetopia.Test.Assertions module for more information.
Refute that a job has been created.
It can be used as below:
# Examples
job = MyQueuetopia.create_job("mailer_queue", "deliver_mail", %{body: "hello", from: "from", to: "to"})
refute_job_created(MyQueuetopia)
refute_job_created(MyQueuetopia, %{queue: "mailer_queue", params: %{body: "hello"}})