From afc98e3b551b11baa4a9257d7578d3151404fcc0 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 28 Apr 2023 15:23:53 +0900 Subject: Copy also helper.rb [ci skip] --- tool/lib/helper.rb | 4 ++++ tool/sync_test_lib.rb | 1 + 2 files changed, 5 insertions(+) create mode 100644 tool/lib/helper.rb 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 -- cgit v1.2.1