On Thu, May 19, 2005 at 02:42:18PM -0800, Vonnahme, Nathan wrote:
> So I guess the problem is, Test::More produces output when I use() it,
> but in some cases I'd like to not use() it, but I don't know whether I
> want it until runtime and by then it's already been use()d...

I suspect you're doing this:

        use Test::More tests => 7;

and you want this:

        use Test::More;

        if( $Run_Tests ) {
                plan tests => 7;
        }


-- 
Michael G Schwern     [EMAIL PROTECTED]     http://www.pobox.com/~schwern
Reality is that which, when you stop believing in it, doesn't go away.
        -- Phillip K. Dick

Reply via email to