Releases: rubocop/rubocop-minitest
Releases · rubocop/rubocop-minitest
RuboCop Minitest 0.21.1
Bug fixes
- #178: Fix incorrect documentation URLs when using
rubocop --show-docs-url
. (@r7kamura)
RuboCop Minitest 0.20.1
Bug fixes
- #175: Fix raise error when using assert with block. (@ippachi)
RuboCop Minitest 0.20.0
New features
- #169: Add new
Minitest/SkipEnsure
cop. (@koic)
Bug fixes
- #172: Fix a false positive for
Minitest/AssertPredicate
and Minitest/RefutePredicate
when using numbered parameters. (@koic)
Changes
- #168: (Compatibility) Drop Ruby 2.5 support. (@koic)
RuboCop Minitest 0.19.1
Bug fixes
- #167: Fix potential for valid Ruby code to be unparsable in
Minitest/DuplicateTestRun
cop. (@gjtorikian)
RuboCop Minitest 0.18.0
New features
- #161: Add new
Minitest/AssertPredicate
and Minitest/RefutePredicate
cops. (@koic)
Changes
- #162: Make
Minitest/AssertNil
(Minitest/RefuteNil
) aware of assert_predicate(obj, :nil?)
(refute_predicate(obj, :nil?)
). (@koic)
RuboCop Minitest 0.17.2
Bug fixes
- #159: Fix a false positive for
Minitest/UnreachableAssertion
when using only one assertion method in assert_raises
block. (@koic)
RuboCop Minitest 0.17.1
Changes
- #158: Make
Minitest/UnreachableAssertion
aware of assert
and refute
prefix methods. (@koic)
RuboCop Minitest 0.17.0
New features
- #155: Provide
assert_offense
, assert_correction
, and assert_no_offenses
testing APIs for custom Minitest cop development. (@koic)