summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2023-04-28 15:23:53 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2023-04-28 22:05:09 +0900
commitafc98e3b551b11baa4a9257d7578d3151404fcc0 (patch)
treecad0d0c821e78fb0fa916a917e2776db2c3b05bc /tool
parent0bd278238462b4c9e89014e6a64fbd9d7d98700a (diff)
downloadruby-afc98e3b551b11baa4a9257d7578d3151404fcc0.tar.gz
Copy also helper.rb [ci skip]
Diffstat (limited to 'tool')
-rw-r--r--tool/lib/helper.rb4
-rwxr-xr-xtool/sync_test_lib.rb1
2 files changed, 5 insertions, 0 deletions
diff --git a/tool/lib/helper.rb b/tool/lib/helper.rb
new file mode 100644
index 0000000000..909f8f98af
--- /dev/null
+++ b/tool/lib/helper.rb
@@ -0,0 +1,4 @@
+require "test/unit"
+require_relative "core_assertions"
+
+Test::Unit::TestCase.include Test::Unit::CoreAssertions
diff --git a/tool/sync_test_lib.rb b/tool/sync_test_lib.rb
index 69d2c38e56..b2878b463f 100755
--- a/tool/sync_test_lib.rb
+++ b/tool/sync_test_lib.rb
@@ -6,6 +6,7 @@ test_lib_files = %w[
core_assertions.rb
find_executable.rb
envutil.rb
+ helper.rb
].map do |file|
[file, File.read("#{__dir__}/lib/#{file}")]
end