summaryrefslogtreecommitdiff
path: root/test/-ext-/funcall
diff options
context:
space:
mode:
Diffstat (limited to 'test/-ext-/funcall')
-rw-r--r--test/-ext-/funcall/test_funcall.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/-ext-/funcall/test_funcall.rb b/test/-ext-/funcall/test_funcall.rb
new file mode 100644
index 0000000000..01a03bf5ef
--- /dev/null
+++ b/test/-ext-/funcall/test_funcall.rb
@@ -0,0 +1,11 @@
+# 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