summaryrefslogtreecommitdiffhomepage
path: root/test/t
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-06-15 13:55:27 +0900
committerYukihiro Matsumoto <[email protected]>2012-06-15 13:55:27 +0900
commit39f47c191557ca401b6aaceb04b395227431b62f (patch)
treec4c38c1bda794c2110b6c978e8fa15fa837221d1 /test/t
parent79e162526954be38ca27e77159f2c127d05667cd (diff)
downloadmruby-39f47c191557ca401b6aaceb04b395227431b62f.tar.gz
mruby-39f47c191557ca401b6aaceb04b395227431b62f.zip
remove LoadError
Diffstat (limited to 'test/t')
-rw-r--r--test/t/exception.rb12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/t/exception.rb b/test/t/exception.rb
index d7226a368..0aed0e2e6 100644
--- a/test/t/exception.rb
+++ b/test/t/exception.rb
@@ -24,7 +24,7 @@ end
assert('Exception#message', '15.2.22.5.2') do
e = Exception.exception('a')
-
+
e.message == 'a'
end
@@ -61,16 +61,6 @@ assert('SyntaxError', '15.2.38') do
end
end
-assert('LoadError', '15.2.39') do
- begin
- raise LoadError.new
- rescue LoadError
- true
- else
- false
- end
-end
-
# Not ISO specified
assert('Exception 1') do