Sha256: 4b4441cd24c0fe5ff8960b31b0b9ffadbd5eda30aee6639283625f71449380d7

Contents?: true

Size: 510 Bytes

Versions: 8

Compression:

Stored size: 510 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

  it 'does not register an offence for !' do
    inspect_source(cop, ['!test'])
    expect(cop.offences).to be_empty
  end

  it 'does not register an offence for :not' do
    inspect_source(cop, ['[:not, :if, :else]'])
    expect(cop.offences).to be_empty
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

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