The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Test::Functional::Conf - Run-time configure for Test::Functional

SYNOPSIS

  # run extra "in-development" tests
  perl -MTest::Functional::Conf=unstable,1 some-test.t

  # stop at first test failure
  perl -MTest::Functional::Conf=fastout,1 some-test.t

  # find first test failure (including unstable tests)
  perl -MTest::Functional::Conf=fastout,1,unstable,1 some-test.t

DESCRIPTION

This package's only function is to allow a user to toggle various modes of Test::Functional. The synopsis provides the general idea. The specific features that are currently available are:

  • unstable (boolean): run test which are under construction (signified by using notest() rather than test().

  • fastout (boolean): halt the test at the first failure.

For more information, see Test::Functional.

AUTHOR

Erik Osheim <erik at osheim.org>

COPYRIGHT & LICENSE

Copyright 2009 Erik Osheim, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.