class RuboCop::Cop::RSpec::ReceiveNever

Prefer ‘not_to receive(…)` over `receive(…).never`.

@example

# bad
expect(foo).to receive(:bar).never

# good
expect(foo).not_to receive(:bar)