diff options
| author | Benoit Daloze <eregontp@gmail.com> | 2021-01-28 17:08:57 +0100 |
|---|---|---|
| committer | Benoit Daloze <eregontp@gmail.com> | 2021-01-28 17:08:57 +0100 |
| commit | 2e32b919b4f2f5b7f2e1509d6fa985526ef1f61c (patch) | |
| tree | aedadac3c99ca0097c2bbeaa95830332d6fb9971 /spec/ruby/language/heredoc_spec.rb | |
| parent | 1b377b32c8616f85c0a97e68758c5c2db83f2169 (diff) | |
Update to ruby/spec@8cafaa5
Diffstat (limited to 'spec/ruby/language/heredoc_spec.rb')
| -rw-r--r-- | spec/ruby/language/heredoc_spec.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/ruby/language/heredoc_spec.rb b/spec/ruby/language/heredoc_spec.rb index 95df8457e4..61a27ad8e0 100644 --- a/spec/ruby/language/heredoc_spec.rb +++ b/spec/ruby/language/heredoc_spec.rb @@ -100,6 +100,11 @@ HERE SquigglyHeredocSpecs.singlequoted.should == "singlequoted \#{\"interpolated\"}\n" end + it "allows HEREDOC with <<~'identifier', no interpolation, with backslash" do + require_relative 'fixtures/squiggly_heredoc' + SquigglyHeredocSpecs.backslash.should == "a\nbc\n" + end + it "selects the least-indented line and removes its indentation from all the lines" do require_relative 'fixtures/squiggly_heredoc' SquigglyHeredocSpecs.least_indented_on_the_first_line.should == "a\n b\n c\n" |
