config/default.yml in rubocop-minitest-0.34.4 vs config/default.yml in rubocop-minitest-0.34.5

- old
+ new

@@ -44,10 +44,11 @@ Minitest/AssertKindOf: Description: 'This cop enforces the test to use `assert_kind_of(Class, object)` over `assert(object.kind_of?(Class))`' StyleGuide: 'https://github.com/rubocop/minitest-style-guide#assert-kind-of' Enabled: 'pending' VersionAdded: '0.10' + VersionChanged: '0.34' Minitest/AssertMatch: Description: 'This cop enforces the test to use `assert_match` instead of using `assert(matcher.match(object))`.' StyleGuide: 'https://minitest.rubystyle.guide#assert-match' Enabled: true @@ -250,9 +251,10 @@ Minitest/RefuteKindOf: Description: 'This cop enforces the test to use `refute_kind_of(Class, object)` over `refute(object.kind_of?(Class))`.' StyleGuide: 'https://github.com/rubocop/minitest-style-guide#refute-kind-of' Enabled: 'pending' VersionAdded: '0.10' + VersionChanged: '0.34' Minitest/RefuteMatch: Description: 'This cop enforces the test to use `refute_match` instead of using `refute(matcher.match(object))`.' StyleGuide: 'https://minitest.rubystyle.guide#refute-match' Enabled: true