summaryrefslogtreecommitdiff
path: root/test/-ext-/postponed_job/test_postponed_job.rb
blob: da3b579ebae33c451b9b9bcea44749b0ec580829 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: false
require 'test/unit'
require 'thread'
require '-test-/postponed_job'

module Bug
  def self.postponed_job_call_direct_wrapper(*args)
    postponed_job_call_direct(*args)
  end

  def self.postponed_job_register_wrapper(*args)
    postponed_job_register(*args)
  end
end

class TestPostponed_job < Test::Unit::TestCase
  def test_register
    direct, registered = [], []

    Bug.postponed_job_call_direct_wrapper(direct)
    Bug.postponed_job_register_wrapper(registered)

    assert_match(     /postponed_job_call_direct_wrapper/, direct.join)
    assert_not_match( /postponed_job_register_wrapper/, registered.join)

    Bug.postponed_job_register_one(ary = [])
    assert_equal [1], ary
  end
end