Skip to content

Commit

Permalink
Switch to use test-unit from minitest
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Jan 9, 2024
1 parent 1a8bee9 commit c94aff8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source "https://rubygems.org"
gemspec

group :development do
gem "minitest"
gem "test-unit"
gem "coveralls"
gem "rubocop"
end
5 changes: 2 additions & 3 deletions test/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,15 @@
rescue Gem::LoadError
end

gem "minitest", "~> 5"
require "minitest/autorun"
require "test/unit"
require "rake"
require "tmpdir"

require_relative "support/file_creation"
require_relative "support/ruby_runner"
require_relative "support/rakefile_definitions"

class Rake::TestCase < Minitest::Test
class Rake::TestCase < Test::Unit::TestCase
include FileCreation

include Rake::DSL
Expand Down

0 comments on commit c94aff8

Please sign in to comment.