Sha256: 8f51bf04e9ceee2f48bc362c1619f20be6352a702a37db5bf6f7fa2cd0d40d38
Contents?: true
Size: 1007 Bytes
Versions: 6
Compression:
Stored size: 1007 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe Rubocop::Cop::Style::SymbolArray do subject(:cop) { described_class.new } it 'registers an offence for arrays of symbols', ruby: 2.0 do inspect_source(cop, ['[:one, :two, :three]']) expect(cop.offences.size).to eq(1) end it 'does not reg an offence for array with non-syms', ruby: 2.0 do inspect_source(cop, ['[:one, :two, "three"]']) expect(cop.offences).to be_empty end it 'does not reg an offence for array starting with %i', ruby: 2.0 do inspect_source(cop, ['%i(one two three)']) expect(cop.offences).to be_empty end it 'does not reg an offence for array with one element', ruby: 2.0 do inspect_source(cop, ['[:three]']) expect(cop.offences).to be_empty end it 'does nothing on Ruby 1.9', ruby: 1.9 do inspect_source(cop, ['[:one, :two, :three]']) expect(cop.offences).to be_empty end end
Version data entries
6 entries across 6 versions & 2 rubygems