Releases: rubocop/rubocop-minitest
Releases Β· rubocop/rubocop-minitest
RuboCop Minitest 0.26.0
New features
- #215: Add new
Minitest/AssertSame
andMinitest/RefuteSame
cops. (@tejasbubane) - #213: Add new
Minitest/TestFileName
cop. (@tejasbubane) - #205: Add new
Minitest/UselessAssertion
cop. (@fatkodima)
Bug fixes
- #210: Fix a false positive for
Minitest/EmptyLineBeforeAssertionMethodsTest
when using assertion method with block arg before other assertion method. (@koic)
Changes
RuboCop Minitest 0.25.1
RuboCop Minitest 0.25.0
RuboCop Minitest 0.24.0
New features
- #198: Add new
Minitest/SkipWithoutReason
cop. (@fatkodima)
RuboCop Minitest 0.23.2
Bug fixes
- #189: Fix a false positive for
Minitest/EmptyLineBeforeAssertionMethods
when using an assertion method as the first line within a test block. (@ryanquanz)
RuboCop Minitest 0.23.1
Bug fixes
- #189: Fix a false positive for
Minitest/EmptyLineBeforeAssertionMethods
when usingrescue
before assertion method. (@koic) - #187: Fix an error for
Minitest/EmptyLineBeforeAssertionMethods
when using method call with block. (@koic) - #190: Fix an incorrect autocorrect for
Minitest/EmptyLineBeforeAssertionMethods
when using method call with source code comment before assertion method. (@koic) - #189: Fix a false negative for
Minitest/EmptyLineBeforeAssertionMethods
when using non assertion method statement before assertion method used in a block. (@koic) - #189: Fix a false negative for
Minitest/EmptyLineBeforeAssertionMethods
when using assertion method used in block before assertion method. (@koic)
RuboCop Minitest 0.23.0
RuboCop Minitest 0.22.2
RuboCop Minitest 0.22.1
RuboCop Minitest 0.22.0
New features
- #179: New
Minitest/AssertRaisesWithRegexpArgument
cop checks for regular expression literals passed toassert_raises
. (@rwstauner)