Sha256: f08845bb1eac55dad187ece531df68a60b51eeb69ec9173973ff6c05c227392b

Contents?: true

Size: 690 Bytes

Versions: 8

Compression:

Stored size: 690 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Rubocop::Cop::Style::NilComparison do
  subject(:cop) { described_class.new }

  it 'registers an offence for == nil' do
    inspect_source(cop,
                   ['x == nil'])
    expect(cop.offences.size).to eq(1)
  end

  it 'registers an offence for === nil' do
    inspect_source(cop,
                   ['x === nil'])
    expect(cop.offences.size).to eq(1)
  end

  it 'registers an offence for === nil' do
    inspect_source(cop,
                   ['x != nil'])
    expect(cop.offences.size).to eq(1)
  end

  it 'works with lambda.()' do
    inspect_source(cop, ['a.(x) == nil'])
    expect(cop.offences.size).to eq(1)
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
ridecharge-rubocop-0.0.1 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.18.1 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.18.0 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.17.0 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.16.0 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.15.0 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.14.1 spec/rubocop/cop/style/nil_comparison_spec.rb
rubocop-0.14.0 spec/rubocop/cop/style/nil_comparison_spec.rb