aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2022-11-15 20:19:43 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2022-11-15 20:19:43 +0900
commit36dc99af5aa3932f3a85b1d8212e1d3625307a90 (patch)
tree4bb26156763562578ea38e50452348d0b6c09e82
parentaecb7f6efc8422d98453128c80754121022b0766 (diff)
downloadruby-36dc99af5aa3932f3a85b1d8212e1d3625307a90.tar.gz
Added empty class for test methods in TestIRB cases
-rw-r--r--test/irb/helper.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/irb/helper.rb b/test/irb/helper.rb
index a1dced0978..293315879a 100644
--- a/test/irb/helper.rb
+++ b/test/irb/helper.rb
@@ -1,5 +1,9 @@
require "test/unit"
+module IRB
+ class InputMethod; end
+end
+
module TestIRB
class TestCase < Test::Unit::TestCase
class TestInputMethod < ::IRB::InputMethod