Skip to content

Commit

Permalink
Merge pull request #836 from ruby/completelly-remove-minitest
Browse files Browse the repository at this point in the history
Completely remove minitest
  • Loading branch information
hsbt authored Sep 3, 2021
2 parents 5437418 + 73c030c commit 31985ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ group :development do
gem 'racc', '> 1.4.10'
gem 'kpeg', github: 'evanphx/kpeg'
gem 'test-unit'
gem 'minitest' # for test_rdoc_rubygems_hook.rb
gem 'rubocop'
gem 'gettext'
end
17 changes: 2 additions & 15 deletions test/rdoc/support/test_case.rb
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
##
# RDoc::TestCase is an abstract TestCase to provide common setup and teardown
# across all RDoc tests. The test case uses minitest, so all the assertions
# of minitest may be used.
#
# The testcase provides the following:
#
# * A reset code-object tree
# * A reset markup preprocessor (RDoc::Markup::PreProcess)
# * The <code>@RM</code> alias of RDoc::Markup (for less typing)
# * <code>@pwd</code> containing the current working directory
# * FileUtils, pp, Tempfile, Dir.tmpdir and StringIO

require 'bundler/errors'
begin
gem 'test-unit'
Expand All @@ -30,8 +17,8 @@

##
# RDoc::TestCase is an abstract TestCase to provide common setup and teardown
# across all RDoc tests. The test case uses minitest, so all the assertions
# of minitest may be used.
# across all RDoc tests. The test case uses test-unit, so all the assertions
# of test-unit may be used.
#
# The testcase provides the following:
#
Expand Down

0 comments on commit 31985ad

Please sign in to comment.