class RuboCop::Cop::RSpec::BeNil

def on_send(node)

def on_send(node)
  case style
  when :be
    check_be_style(node)
  when :be_nil
    check_be_nil_style(node)
  end
end