mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
12 lines
256 B
Ruby
12 lines
256 B
Ruby
|
# frozen_string_literal: true
|
||
|
require 'test/unit'
|
||
|
|
||
|
class TestFuncall < Test::Unit::TestCase
|
||
|
require '-test-/funcall'
|
||
|
|
||
|
def test_funcall_extra_args
|
||
|
assert_equal 'TestFuncall', TestFuncall.extra_args_name,
|
||
|
'[ruby-core:85266] [Bug #14425]'
|
||
|
end
|
||
|
end
|