In article <[EMAIL PROTECTED]>, Andy
Armstrong <[EMAIL PROTECTED]> wrote:
> On 1 Nov 2007, at 14:12, Michael Peters wrote:
>
>
> Yeah, but from the user's PoV this is pretty easy:
>
> # t/controller.t
> use Test::Steering;
>
> include ('xt/frob') if frob_avail();
> include ('xt/slow') if all_the_time_in_the_world();
That would happen at `make test` time (or whatever M::B does)? When I
want this sort of thing with Test::Manifest, I create t/test_manifest
at
`make time`.
It might be interesting to reflect on the harness though, and write to
the test queue. I don't think I need this. I just wanted to say
"reflect" :)
use Test::Harness;
add_test_file( 'foo.t', AT_END ); # or NEXT, or whatever