config/default.yml in rubocop-minitest-0.15.1 vs config/default.yml in rubocop-minitest-0.15.2
- old
+ new
@@ -9,12 +9,11 @@
StyleGuide: 'https://minitest.rubystyle.guide#assert-empty'
Enabled: true
VersionAdded: '0.2'
Minitest/AssertEmptyLiteral:
- Description: 'This cop enforces the test to use `assert_empty` instead of using `assert([], object)` or `assert({}, object)`.'
+ Description: 'This cop enforces the test to use `assert_empty` instead of using `assert_equal([], object)`.'
Enabled: true
- SafeAutoCorrect: false
VersionAdded: '0.5'
VersionChanged: '0.11'
Minitest/AssertEqual:
Description: 'This cop enforces the test to use `assert_equal` instead of using `assert(expected == actual)`.'