From f45fc7daa00faa561c1bce32b598c06e1ec0d978 Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 10 Apr 2012 10:07:07 +0000 Subject: * error.c (rb_enc_raise): new function to raise an exception with the message in the given encoding. patched by now (Nikolai Weibull) at [ruby-core:41160]. [Feature #5650] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/-ext-/exception/test_enc_raise.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/-ext-/exception/test_enc_raise.rb (limited to 'test/-ext-') diff --git a/test/-ext-/exception/test_enc_raise.rb b/test/-ext-/exception/test_enc_raise.rb new file mode 100644 index 0000000000..a578b167ea --- /dev/null +++ b/test/-ext-/exception/test_enc_raise.rb @@ -0,0 +1,15 @@ +require 'test/unit' +require '-test-/exception' + +module Bug + class TestException < Test::Unit::TestCase + def test_enc_raise + feature5650 = '[ruby-core:41160]' + Encoding.list.each do |enc| + next unless enc.ascii_compatible? + e = assert_raise(Bug::Exception) {Bug::Exception.enc_raise(enc, "[Feature #5650]")} + assert_equal(enc, e.message.encoding, feature5650) + end + end + end +end -- cgit v1.2.3