In article <[EMAIL PROTECTED]>, Brett Sanger
<[EMAIL PROTECTED]> wrote:

>> > > Test::Builder docs, in case I was going to have to roll my own
> > > prove-like tool, and didn't see an obvious call there either.
> > 
> > Test::Manifest is the way to get them in a certain order.
> 
> Ah, thanks.  Is there interest in having prove pay attention to
> Test::Manifest?

Probably not. With prove(1) you don't need any MakeMaker hakery. It
might be interesting for prove(1) to take the test file names from
a file. Alternately, depending on your operating system, you might
be able to something like xargs(1) to turn a list of names in a file
into a list of arguments to prove(1). That could be a shell alias.

You can always write your own wrapper around prove(1) that does
something like:

prove `perl -MTest::Manifest -we 'print "" .
Test::Manifest::get_t_files()'`

-- 
brian d foy, [EMAIL PROTECTED]

Reply via email to