Releases: rubocop/rubocop-minitest
Releases · rubocop/rubocop-minitest
RuboCop Minitest v0.38.0
RuboCop Minitest 0.37.0
New features
Changes
- #328: Remove "minitest/autorun" and "minitest/pride" requirement from "rubocop/minitest/support". (@bquorning)
RuboCop Minitest 0.36.0
Bug fixes
- #317: Fix an error for
Minitest/MultipleAssertions
when using for-style loops. (@earlopain) - #314: Fix an error for
Minitest/SkipEnsure
when onlyensure
has a body. (@earlopain)
Changes
- #314: (Breaking) Raise a useful error when using a Cop in
AssertOffense
if the Cop's class is not defined. (@brandoncc)
RuboCop Minitest 0.35.1
RuboCop Minitest 0.35.0
New features
- #301: Add new Minitest/Focus cop. (@jaredmoody)
Bug fixes
- #300: Fix an error for
Minitest/AssertEmptyLiteral
when only passing an empty literal. (@earlopain)
Changes
RuboCop Minitest 0.34.5
Bug fixes
- #299: Fix an error for
Style/UselessAssertion
when passing a single argument to methods to accept two arguments. (@earlopain)
Changes
- #298: Extend
Minitest/AssertKindOf
to also correctassert(object.is_a?(Class))
. (@amomchilov)