1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[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>
This commit is contained in:
Peter Zhu 2022-10-26 11:12:32 -04:00 committed by git
parent cb95d834cc
commit 73a0223f95
3 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -3,7 +3,7 @@
require "test/unit"
require "irb"
require_relative "test_helper"
require_relative "helper"
module TestIRB
class TestRelineInputMethod < Test::Unit::TestCase