Sha256: f7a952b2ff90e308e683540b0b50e91d8347489669d5c103b8a2c4b4152365c5

Contents?: true

Size: 1007 Bytes

Versions: 11

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 offense for arrays of symbols', ruby: 2.0 do
    inspect_source(cop,
                   ['[:one, :two, :three]'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'does not reg an offense for array with non-syms', ruby: 2.0 do
    inspect_source(cop,
                   ['[:one, :two, "three"]'])
    expect(cop.offenses).to be_empty
  end

  it 'does not reg an offense for array starting with %i', ruby: 2.0 do
    inspect_source(cop,
                   ['%i(one two three)'])
    expect(cop.offenses).to be_empty
  end

  it 'does not reg an offense for array with one element', ruby: 2.0 do
    inspect_source(cop,
                   ['[:three]'])
    expect(cop.offenses).to be_empty
  end

  it 'does nothing on Ruby 1.9', ruby: 1.9 do
    inspect_source(cop,
                   ['[:one, :two, :three]'])
    expect(cop.offenses).to be_empty
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

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