mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 22:14:37 +02:00
18 lines
578 B
Ruby
18 lines
578 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "test_helper"
|
|
|
|
module YARP
|
|
class HeredocDedentTest < 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
|