Sha256: c03b27edeeff27e0a0e5eabc2975f957f39fb5db6c51de189c6078ecb7346fe1
Contents?: true
Size: 464 Bytes
Versions: 11
Compression:
Stored size: 464 Bytes
Contents
# encoding: utf-8 require 'spec_helper' describe RuboCop::Cop::Lint::EmptyInterpolation do subject(:cop) { described_class.new } it 'registers an offense for #{} in interpolation' do inspect_source(cop, ['"this is the #{}"']) expect(cop.offenses.size).to eq(1) expect(cop.highlights).to eq(['#{}']) end it 'accepts non-empty interpolation' do inspect_source(cop, '"this is #{top} silly"') expect(cop.offenses).to be_empty end end
Version data entries
11 entries across 11 versions & 2 rubygems