diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-01-12 15:29:02 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-01-12 15:29:02 +0900 |
| commit | fb1dad82aae8c98949be7e5ad7440675c67265bb (patch) | |
| tree | a53503ae7b868ca71399367f88c8c7407da1ba64 /test | |
| parent | a69d92e8197dc10b29387fd1e1272db13bdca0f5 (diff) | |
| parent | 6be5160eb634e7b045cba83a38675cf14fa16593 (diff) | |
| download | mruby-fb1dad82aae8c98949be7e5ad7440675c67265bb.tar.gz mruby-fb1dad82aae8c98949be7e5ad7440675c67265bb.zip | |
Merge pull request #3394 from clayton-shopify/really-fix-nme
Fix 36fc1f14 not checking in the right location
Diffstat (limited to 'test')
| -rw-r--r-- | test/t/nomethoderror.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/t/nomethoderror.rb b/test/t/nomethoderror.rb index 1c09bc20e..41a3ba14f 100644 --- a/test/t/nomethoderror.rb +++ b/test/t/nomethoderror.rb @@ -51,3 +51,21 @@ assert('Can still call super when BasicObject#method_missing is removed') do end end end + +assert("NoMethodError#new does not return an exception") do + begin + class << NoMethodError + def new(*) + nil + end + end + + assert_raise(TypeError) do + Object.q + end + ensure + class << NoMethodError + remove_method :new + end + end +end |
