aboutsummaryrefslogtreecommitdiffstats
path: root/test/yarp/heredoc_dedent_test.rb
blob: 64627c564f2d68e78937bdd04fc922b0bfbca947 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require "yarp_test_helper"

module YARP
  class HeredocDedentTest < Test::Unit::TestCase
    filepath = File.expand_path("fixtures/tilde_heredocs.txt", __dir__)

    File.read(filepath).split(/(?=\n)\n(?=<)/).each_with_index do |heredoc, index|
      define_method "test_heredoc_#{index}" do
        parts = YARP.parse(heredoc).value.statements.body.first.parts
        actual = parts.map { |part| part.is_a?(StringNode) ? part.unescaped : "1" }.join

        assert_equal(eval(heredoc), actual, "Expected heredocs to match.")
      end
    end
  end
end