Sha256: 3b6198449d3e2db3b9e712e297d8230b248d3fc1bcb80146360bc49c49efd251

Contents?: true

Size: 539 Bytes

Versions: 13

Compression:

Stored size: 539 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

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

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

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

  it 'does not register an offense for not not' do
    inspect_source(cop, 'not not test.something')
    expect(cop.offenses).to be_empty
  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/double_negation_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.29.1 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.29.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.28.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.27.1 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.27.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.26.1 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.26.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.25.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.24.1 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.24.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.23.0 spec/rubocop/cop/style/double_negation_spec.rb