summaryrefslogtreecommitdiff
path: root/jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb')
-rw-r--r--jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb b/jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb
new file mode 100644
index 0000000..032e35c
--- /dev/null
+++ b/jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb
@@ -0,0 +1,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