Sha256: d27f9909fbf68e37b8283ef0b583f69fbaca61102308d906cec7bdafdcb131fb

Contents?: true

Size: 539 Bytes

Versions: 6

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

6 entries across 6 versions & 1 rubygems

Version Path
rubocop-0.22.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.21.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.20.1 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.20.0 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.19.1 spec/rubocop/cop/style/double_negation_spec.rb
rubocop-0.19.0 spec/rubocop/cop/style/double_negation_spec.rb