Releases: rubocop/rubocop-minitest
Releases · rubocop/rubocop-minitest
RuboCop Minitest 0.32.2
Bug fixes
- #263: Fix an error for
Minitest/AssertOperator
andMinitest/RefuteOperator
when using unary operation argument. (@koic)
Changes
- #264: Make
Minitest/AssertOperator
andMinitest/RefuteOperator
allow index access with[]
. (@flavorjones)
RuboCop Minitest 0.32.1
RuboCop Minitest 0.32.0
RuboCop Minitest 0.31.1
RuboCop Minitest 0.31.0
New features
- #236: Add new
Minitest/ReturnInTestMethod
cop. (@fatkodima)
Changes
- #250: (Breaking) Drop Ruby 2.6 support. (@koic)
- #249: Handle assertions in conditionals branches in
Minitest/MultipleAssertions
cop. (@fatkodima)
RuboCop Minitest 0.30.0
New features
- #248: Make
Minitest/AssertInstanceOf
andMinitest/RefuteInstanceOf
aware ofassert_equal(Class, object.class)
andrefute_equal(Class, object.class)
. (@koic) - #244: Make
Minitest/GlobalExpectations
aware ofmust_pattern_match
andwont_pattern_match
matchers. (@koic) - #216: Add new
Minitest/NoTestCases
cop. (@tejasbubane)
Bug fixes
RuboCop Minitest 0.29.0
New features
- #238: Support
it
/test
testing blocks as test cases. (@fatkodima)
RuboCop Minitest 0.28.0
New features
- #214: Add new
Minitest/LifecycleHooksOrder
cop. (@fatkodima)
Changes
- #239: Enhance
AssertMatch
/RefuteMatch
to checkmatch?
and=~
methods. (@fatkodima)
RuboCop Minitest 0.27.0
New features
- #220: Add new
Minitest/NonPublicTestMethod
cop. (@fatkodima)
Bug fixes
- #237: Fix a false positive for
Minitest/UselessAssertion
when using command execution. (@fatkodima)
Changes
RuboCop Minitest 0.26.1
Bug fixes
- #225: Fix an error for
Minitest/TestFileName
when using empty file. (@koic) - #223: Fix a false positive for
Minitest/MultipleAssertions
when using assertion method with block. (@fatkodima)