From 5bdd132d00c85493cb030e32264f05be49b3644c Mon Sep 17 00:00:00 2001 From: Akira Matsuda Date: Wed, 21 Jun 2023 19:56:07 +0900 Subject: [PATCH] minitest is no longer a stdlib on any of the supported versions of Rubies CRuby's bundled minitest had been removed in 2.2.0 at https://github.com/ruby/ruby/commit/7cda8222ca6fa109e531705579164f56f29f8068 --- activesupport/lib/active_support/test_case.rb | 1 - activesupport/lib/active_support/testing/autorun.rb | 2 -- 2 files changed, 3 deletions(-) diff --git a/activesupport/lib/active_support/test_case.rb b/activesupport/lib/active_support/test_case.rb index 626d2087af1fa..52de2ea730634 100644 --- a/activesupport/lib/active_support/test_case.rb +++ b/activesupport/lib/active_support/test_case.rb @@ -1,6 +1,5 @@ # frozen_string_literal: true -gem "minitest" # make sure we get the gem, not stdlib require "minitest" require "active_support/testing/tagged_logging" require "active_support/testing/setup_and_teardown" diff --git a/activesupport/lib/active_support/testing/autorun.rb b/activesupport/lib/active_support/testing/autorun.rb index 889b41659adf9..d5d5fc7ae8e45 100644 --- a/activesupport/lib/active_support/testing/autorun.rb +++ b/activesupport/lib/active_support/testing/autorun.rb @@ -1,7 +1,5 @@ # frozen_string_literal: true -gem "minitest" - require "minitest" Minitest.autorun