1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
# frozen_string_literal: true
RSpec.describe RuboCop::AST::StrNode do
let(:str_node) { parse_source(source).ast }
describe '.new' do
context 'with a normal string' do
let(:source) { "'foo'" }
it { expect(str_node.is_a?(described_class)).to be(true) }
end
context 'with a string with interpolation' do
let(:source) { '"#{foo}"' }
it { expect(str_node.is_a?(described_class)).to be(true) }
end
context 'with a heredoc' do
let(:source) do
<<~RUBY
<<-CODE
foo
bar
CODE
RUBY
end
it { expect(str_node.is_a?(described_class)).to be(true) }
end
end
describe '#heredoc?' do
context 'with a normal string' do
let(:source) { "'foo'" }
it { expect(str_node.heredoc?).to be(false) }
end
context 'with a string with interpolation' do
let(:source) { '"#{foo}"' }
it { expect(str_node.heredoc?).to be(false) }
end
context 'with a heredoc' do
let(:source) do
<<~RUBY
<<-CODE
foo
bar
CODE
RUBY
end
it { expect(str_node.heredoc?).to be(true) }
end
end
end
|