[Suggested by @Darhazer](https://github.com/rubocop/rubocop-rspec/pull/1456#issuecomment-1315150349) RSpec Expectations [allows using](https://github.com/rspec/rspec-expectations/blob/a85a42cb4c4c700b7591e4dc2cb27089bdf425c4/lib/rspec/expectations/minitest_integration.rb) [`assert_`/`refute_` Minitest matchers](http://docs.seattlerb.org/minitest/Minitest/Assertions.html) However, RSpec comes with its matchers that pretty much cover the same: ```diff - assert_equal a, b + expect(a).to eq(b) ``` A notable difference is that Minitest allows for an optional failure message. It's a lesser known RSpec feature, [but it allows it, too](https://github.com/rspec/rspec-expectations/blob/6ebb53150c1b1a629e45a4649fa7965e6a95e39a/lib/rspec/expectations/expectation_target.rb#L63): ```diff - assert_equal a, b, "must be equal" + expect(a).to(eq(b), "must be equal") ```