summaryrefslogtreecommitdiff
path: root/test/-ext-/postponed_job
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-/postponed_job')
-rw-r--r--test/-ext-/postponed_job/test_postponed_job.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/-ext-/postponed_job/test_postponed_job.rb b/test/-ext-/postponed_job/test_postponed_job.rb
new file mode 100644
index 0000000000..a554936b3d
--- /dev/null
+++ b/test/-ext-/postponed_job/test_postponed_job.rb
@@ -0,0 +1,25 @@
+require 'test/unit'
+require 'thread'
+require '-test-/postponed_job'
+
+module Bug
+ def self.postponed_job_call_direct_wrapper(*args)
+ postponed_job_call_direct(*arg)
+ end
+
+ def self.postponed_job_register_wrapper(*args)
+ postponed_job_register(*args)
+ end
+end
+
+class TestTask < 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
+ end
+end \ No newline at end of file