diff options
Diffstat (limited to 'test/ruby/test_exception.rb')
-rw-r--r-- | test/ruby/test_exception.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/ruby/test_exception.rb b/test/ruby/test_exception.rb index b87cef3fb6..3a2aeeab80 100644 --- a/test/ruby/test_exception.rb +++ b/test/ruby/test_exception.rb @@ -1457,4 +1457,21 @@ $stderr = $stdout; raise "\x82\xa0"') do |outs, errs, status| assert_match("BOO!", e.full_message.lines.first) assert_equal({ highlight: Exception.to_tty? }, opt_) end + + def test_syntax_error_detailed_message + Tempfile.create(%w[detail .rb]) do |lib| + lib.print "#{<<~"begin;"}\n#{<<~'end;'}" + begin; + class SyntaxError + def detailed_message(**) + Thread.start {}.join + "#{super}\n""<#{File.basename(__FILE__)}>" + end + end + end; + lib.close + pattern = /^<#{Regexp.quote(File.basename(lib.path))}>/ + assert_in_out_err(%W[-r#{lib.path} -], "1+", [], pattern) + end + end end |