From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- .../test/-ext-/postponed_job/test_postponed_job.rb | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb (limited to 'jni/ruby/test/-ext-/postponed_job') 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 -- cgit v1.2.3