Flowdock
method

assert_no_enqueued_jobs

Importance_1
v4.2.7 - Show latest stable - 0 notes - Class: TestHelper
assert_no_enqueued_jobs(&block) public

Asserts that no jobs have been enqueued.

def test_jobs
  assert_no_enqueued_jobs
  HelloJob.perform_later('jeremy')
  assert_enqueued_jobs 1
end

If a block is passed, that block should not cause any job to be enqueued.

def test_jobs_again
  assert_no_enqueued_jobs do
    # No job should be enqueued from this block
  end
end

Note: This assertion is simply a shortcut for:

assert_enqueued_jobs 0, &block
Show source
Register or log in to add new notes.