Sha256: a06359fbf1f28bd3203eddcc3d72cfddef7a62076dba85d8929ecf924d49e20e

Contents?: true

Size: 824 Bytes

Versions: 2

Compression:

Stored size: 824 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe Rubocop::Cop::Style::FavorJoin 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)
    expect(cop.messages)
      .to eq(['Favor Array#join over Array#*.'])
  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

2 entries across 2 versions & 1 rubygems

Version Path
rubocop-0.19.1 spec/rubocop/cop/style/favor_join_spec.rb
rubocop-0.19.0 spec/rubocop/cop/style/favor_join_spec.rb