aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorPeter Zhu <peter@peterzhu.ca>2022-10-26 11:12:32 -0400
committergit <svn-admin@ruby-lang.org>2022-10-26 15:13:44 +0000
commit73a0223f952ef40d4986dde65eadb8f0b59521f2 (patch)
tree38be9696501db2a372d959b15757cbdb82453c31 /test
parentcb95d834cc19a45a84d8d2c6d0f25d0c44e0d813 (diff)
downloadruby-73a0223f952ef40d4986dde65eadb8f0b59521f2.tar.gz
[ruby/irb] Rename test_helper.rb to helper.rb
The name test_helper.rb conflicts with the test_helper.rb in JSON, causing build failures. This commit renames test_helper.rb to helper.rb. https://github.com/ruby/irb/commit/b6a92bf6b3 Co-Authored-By: Stan Lo <stan001212@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/irb/helper.rb (renamed from test/irb/test_helper.rb)0
-rw-r--r--test/irb/test_cmd.rb2
-rw-r--r--test/irb/test_input_method.rb2
3 files changed, 2 insertions, 2 deletions
diff --git a/test/irb/test_helper.rb b/test/irb/helper.rb
index 19c39a4a59..19c39a4a59 100644
--- a/test/irb/test_helper.rb
+++ b/test/irb/helper.rb
diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb
index 6ff2afc3e3..69830c061b 100644
--- a/test/irb/test_cmd.rb
+++ b/test/irb/test_cmd.rb
@@ -3,7 +3,7 @@ require "test/unit"
require "irb"
require "irb/extend-command"
-require_relative "test_helper"
+require_relative "helper"
module TestIRB
class ExtendCommand < Test::Unit::TestCase
diff --git a/test/irb/test_input_method.rb b/test/irb/test_input_method.rb
index 3618fa46f1..90d6bf5364 100644
--- a/test/irb/test_input_method.rb
+++ b/test/irb/test_input_method.rb
@@ -3,7 +3,7 @@
require "test/unit"
require "irb"
-require_relative "test_helper"
+require_relative "helper"
module TestIRB
class TestRelineInputMethod < Test::Unit::TestCase