From: "NAKAMURA, Hiroshi" Date: 2004-02-12T11:07:41+09:00 Subject: Re: ruby-dev summary: 22688-22826 Hi, > From: "Masayoshi Takahashi" > Sent: Thursday, February 12, 2004 3:45 AM > This is a summry of ruby-dev ML in these days. My thanks go as well to ruby-dev summary team. > [ruby-dev:22763] $: trick in test/* > [ruby-dev:22788] relative load/require (Re: Re: $: trick in test/*) > > NaHi pointed out that some test cases in src/ruby/test/* > changed the value of $: and load files in current directories. > But he didn't think it smart because the value of $: were > shared with all test cases, so he proposed to delete > this $: trick. Note: all tricks are removed from testcases. Run test through test/runner.rb even if you run a test separately. test/runner.rb do the trick instead. e.g. $ ruby test/runner.rb test/soap/helloworld/test_helloworld.rb Regards, // NaHi