Sha256: 67028970accab944e738b8773a651a397e6fb98c2bbb8241009696d2e1257663

Contents?: true

Size: 750 Bytes

Versions: 4

Compression:

Stored size: 750 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Rubocop::Cop::Style::ArrayJoin do
  subject(:cop) { described_class.new }

  it 'registers an offense for an array followed by string' do
    inspect_source(cop,
                   ['%w(one two three) * ", "'])
    expect(cop.offenses.size).to eq(1)
  end

  it 'does not register an offense for numbers' do
    inspect_source(cop,
                   ['%w(one two three) * 4'])
    expect(cop.offenses).to be_empty
  end

  it 'does not register an offense for ambiguous cases' do
    inspect_source(cop,
                   ['test * ", "'])
    expect(cop.offenses).to be_empty

    inspect_source(cop,
                   ['%w(one two three) * test'])
    expect(cop.offenses).to be_empty
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rubocop-0.22.0 spec/rubocop/cop/style/array_join_spec.rb
rubocop-0.21.0 spec/rubocop/cop/style/array_join_spec.rb
rubocop-0.20.1 spec/rubocop/cop/style/array_join_spec.rb
rubocop-0.20.0 spec/rubocop/cop/style/array_join_spec.rb