Sha256: bf4b1d593fd8d6fb5e0ed85c89665a21d395c6a27ed939dd6982ae59d5d5704e

Contents?: true

Size: 846 Bytes

Versions: 11

Compression:

Stored size: 846 Bytes

Contents

# encoding: utf-8

require 'spec_helper'

describe RuboCop::Cop::Lint::LiteralInInterpolation do
  subject(:cop) { described_class.new }

  %w(1 2.0 [1] {}).each do |lit|
    it "registers an offense for #{lit} in interpolation" do
      inspect_source(cop,
                     ["\"this is the \#{#{lit}}\""])
      expect(cop.offenses.size).to eq(1)
    end

    it "registers an offense only for final #{lit} in interpolation" do
      inspect_source(cop,
                     ["\"this is the \#{#{lit};#{lit}}\""])
      expect(cop.offenses.size).to eq(1)
    end
  end

  it 'accepts empty interpolation' do
    inspect_source(cop, '"this is #{} silly"')
    expect(cop.offenses).to be_empty
  end

  it 'accepts strings like __FILE__' do
    inspect_source(cop, '"this is #{__FILE__} silly"')
    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/lint/literal_in_interpolation_spec.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.28.0 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.27.1 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.27.0 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.26.1 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.26.0 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.25.0 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.24.1 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.24.0 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb
rubocop-0.23.0 spec/rubocop/cop/lint/literal_in_interpolation_spec.rb