class RuboCop::Cop::RSpec::VoidExpect

Checks void ‘expect()`.

@example

# bad
expect(something)

# good
expect(something).to be(1)