Michael,

Thanks for the great work.  I do have a couple of questions/comments.

--- On Wed, 15/10/08, Michael G Schwern <[EMAIL PROTECTED]> wrote:

> * new_ok() combines a call to new() with isa_ok().
> * note() is like diag() but only shows up in verbose output

It's interesting that every time I run this, the 'note' shows up before the 
'diag':

  use Test::More 'no_plan';

  ok 1, 'first test';
  diag 'this is a diag';
  note 'this is a note';
  ok 1, 'second test';
  __END__
  note.t ..
  ok 1 - first test
  # this is a note
  ok 2 - second test
  1..2
  # this is a diag
  ok
  All tests successful.
  Files=1, Tests=2,  0 wallclock secs ( 0.04 usr  0.01 sys +  0.03 cusr  0.01 
csys =  0.09 CPU)

Is that just a fluke?

I also get the following warning when running the Makefile.PL:

  Warning: prerequisite Mouse 0.06 not found.

Seems like something which shouldn't be in core code.

Cheers,
Ovid
--
Buy the book         - http://www.oreilly.com/catalog/perlhks/
Tech blog            - http://use.perl.org/~Ovid/journal/
Twitter              - http://twitter.com/OvidPerl
Official Perl 6 Wiki - http://www.perlfoundation.org/perl6

Reply via email to