[#290] — Florian Frank <flori@...>
Hi all,
5 messages
2002/08/03
[#297] GC longjmp macros — Michal Rokos <m.rokos@...>
Hi,
5 messages
2002/08/05
[#308] Q: OSSL in std. distr? — Michal Rokos <m.rokos@...>
Hi,
4 messages
2002/08/08
[#326] Implications of a #force_free method in Object? — Matthew Bloch <mattbee@...>
Hello;
8 messages
2002/08/19
[#328] Int vs Long — Michal Rokos <m.rokos@...>
Hi,
7 messages
2002/08/21
[#337] Int vs Long (2nd part) — Michal Rokos <m.rokos@...>
Hi,
7 messages
2002/08/22
[#340] Int vs Long #3 — Michal Rokos <m.rokos@...>
Hi,
9 messages
2002/08/22
[#344] Re: [Cleanup] Int vs Long #3
— nobu.nokada@...
2002/08/22
Hi,
[#348] Re: [Cleanup] Int vs Long #3
— Michal Rokos <m.rokos@...>
2002/08/23
Hello,
[#353] File (struct stat handling) — Michal Rokos <m.rokos@...>
Hello,
6 messages
2002/08/23
[#358] node.h for eval.c — Michal Rokos <m.rokos@...>
Hi,
5 messages
2002/08/23
[#372] rb_class_path — Michal Rokos <m.rokos@...>
Hello,
7 messages
2002/08/27
[#382] Port match to new dup, clone framework — Michal Rokos <m.rokos@...>
Hi,
5 messages
2002/08/28
[#393] in dln.c — Michal Rokos <m.rokos@...>
Hi,
14 messages
2002/08/30
[#398] Re: [MemLeak] in dln.c
— nobu.nokada@...
2002/08/31
Hi,
[#403] Re: [MemLeak] in dln.c
— Michal Rokos <m.rokos@...>
2002/09/02
Hello,
Re: [PATCH] object.c ruby.h (fwd)
From:
"NAKAMURA, Hiroshi" <nahi@...>
Date:
2002-08-12 03:48:45 UTC
List:
ruby-core #320
Hi, Suketa-san, > From: Masaki Suketa [mailto:masaki.suketa@nifty.ne.jp] > Sent: Saturday, August 10, 2002 9:20 PM > > > If I add assert_true method which checks 'foo == true', > > > could you live with it more pleasantly? > > > > Yes, I can. At the next, does method 'assert' become > > 'deprecated'? ...Sorry, I don't mean it. I just > > remembered JUnit... > > No, at least I never deprecate 'assert' method. > > assert(foo) # foo should not be nil nor false. > assert_true(foo) # foo should be true. It's slightly regrettable for me that it won't be deprecated. But don't care about me. I'm only one of users. :) > If I want to test that foo should not be nil, > I'll use assert. If I want to test that > foo should be true, I'll use assert_true. If I want to test "foo should not be nil", I'll write assert_true( foo != nil ) because it it straight for me to show my intent than assert( foo ) Regards, // NaHi