diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-10 00:48:44 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-05-10 00:48:44 +0900 |
| commit | e07a3731d1c7198eb5b443818c0f6a0601ca790d (patch) | |
| tree | 38c1c38374578f51aea2564f525ea70fb97a96c5 | |
| parent | 7f899d7752b5d2a4be3ca9b1b82719530e8fc0f9 (diff) | |
| parent | 8b6bfd1a25222dd9e1b4fa61cbcd5d96622098de (diff) | |
| download | mruby-e07a3731d1c7198eb5b443818c0f6a0601ca790d.tar.gz mruby-e07a3731d1c7198eb5b443818c0f6a0601ca790d.zip | |
Merge pull request #2221 from yui-knk/add-exception-test
Add exception test
| -rw-r--r-- | test/t/exception.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/t/exception.rb b/test/t/exception.rb index c670d15cd..dde0df5b4 100644 --- a/test/t/exception.rb +++ b/test/t/exception.rb @@ -341,7 +341,7 @@ assert('Exception 19') do end assert('Exception#inspect without message') do - Exception.new.inspect + assert_equal "Exception: Exception", Exception.new.inspect end assert('Exception#backtrace') do |
