Skip to content

Commit

Permalink
see if minitest can produce better diffs
Browse files Browse the repository at this point in the history
  • Loading branch information
rubys committed Jan 20, 2023
1 parent 943e917 commit d0d0a73
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@ source "https://rubygems.org"
gemspec

group :test do
gem 'test-unit'
gem 'minitest'
end

gem "quality_extensions", "~> 1.4"
7 changes: 5 additions & 2 deletions test/test_minimal.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
require 'test/unit'
require "bundler/setup"
require "minitest/autorun"

class TestMinimal < Minitest::Test
make_my_diffs_pretty!

class TestMinimal < Test::Unit::TestCase
def test_minimal
Dir.chdir 'test/tmp' do
system 'bundle exec rails new --minimal minimal'
Expand Down

0 comments on commit d0d0a73

Please sign in to comment.