Sha256: 05ecc0e3111bf3acef2fa7588b8fd47460e6cc2bd966114d93527acdf07c3bc2

Contents?: true

Size: 692 Bytes

Versions: 13

Compression:

Stored size: 692 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

  it 'registers an offense for not' do
    inspect_source(cop, 'not test')
    expect(cop.offenses.size).to eq(1)
  end

  it 'does not register an offense for !' do
    inspect_source(cop, '!test')
    expect(cop.offenses).to be_empty
  end

  it 'auto-corrects "not" with !' do
    new_source = autocorrect_source(cop, 'x = 10 if not y')
    expect(new_source).to eq('x = 10 if !y')
  end

  it 'leaves "not" as is if auto-correction changes the meaning' do
    src = 'not x < y'
    new_source = autocorrect_source(cop, src)
    expect(new_source).to eq(src)
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/not_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/not_spec.rb
rubocop-0.29.1 spec/rubocop/cop/style/not_spec.rb
rubocop-0.29.0 spec/rubocop/cop/style/not_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/not_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/not_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/not_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/not_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/not_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/not_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/not_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/not_spec.rb
rubocop-0.23.0 spec/rubocop/cop/style/not_spec.rb