blob: 032e35c055a5897c4ed8ef3f06d8cbe579844834 (
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
|
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
|