From: trans Date: 2009-09-02T23:25:12+09:00 Subject: Re: minitest assert_throws, why rescue? On Sep 2, 3:40 am, John Barnette wrote: > On Sep 2, 2009, at 12:12 AM, Intransition wrote: > > > In minitest why does assert_throws rescue ArgumentError/NameError ? > > NameError (or ArgumentError on 1.9) is what's raised by Kernel#throw   > when there's no catch block for the thrown symbol. I see. Thanks.