summaryrefslogtreecommitdiff
path: root/test/ripper
diff options
context:
space:
mode:
Diffstat (limited to 'test/ripper')
-rw-r--r--test/ripper/test_scanner_events.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ripper/test_scanner_events.rb b/test/ripper/test_scanner_events.rb
index db15fd46ae..1184b23435 100644
--- a/test/ripper/test_scanner_events.rb
+++ b/test/ripper/test_scanner_events.rb
@@ -888,6 +888,13 @@ class TestRipper::ScannerEvents < Test::Unit::TestCase
scan('ignored_nl', "1;\r\n")
end
+ def test_ignored_sp
+ assert_equal [],
+ scan('ignored_sp', "<<~EOS\nheredoc\nEOS")
+ assert_equal [" "],
+ scan('ignored_sp', "<<~EOS\n heredoc\nEOS")
+ end
+
def test___end__
assert_equal [],
scan('__end__', "")