Merge pull request #50940 from skipkayhil/hm-use-as-test-case

Use ActiveSupport::TestCase for Tracker tests
This commit is contained in:
Yasuo Honda 2024-02-02 08:39:02 +09:00 committed by GitHub
commit 1c2529b9a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -225,7 +225,7 @@ module SharedTrackerTests
end
end
class ERBTrackerTest < Minitest::Test
class ERBTrackerTest < ActiveSupport::TestCase
include SharedTrackerTests
def make_tracker(name, template)
@ -266,7 +266,7 @@ module RubyTrackerTests
end
end
class RipperRubyTrackerTest < Minitest::Test
class RipperRubyTrackerTest < ActiveSupport::TestCase
include SharedTrackerTests
include RubyTrackerTests
@ -275,7 +275,7 @@ class RipperRubyTrackerTest < Minitest::Test
end
end
class PrismRubyTrackerTest < Minitest::Test
class PrismRubyTrackerTest < ActiveSupport::TestCase
include SharedTrackerTests
include RubyTrackerTests