diff options
author | Jari Vetoniemi <jari.vetoniemi@indooratlas.com> | 2020-03-16 18:49:26 +0900 |
---|---|---|
committer | Jari Vetoniemi <jari.vetoniemi@indooratlas.com> | 2020-03-30 00:39:06 +0900 |
commit | fcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch) | |
tree | 64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/-ext-/postponed_job |
Fresh start
Diffstat (limited to 'jni/ruby/test/-ext-/postponed_job')
-rw-r--r-- | jni/ruby/test/-ext-/postponed_job/test_postponed_job.rb | 28 |
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 |