|
NAMETest2::Harness::Settings - Configuration settings for Test2::Harness.DESCRIPTIONThis module represents the options provided at the command line. Each option has a prefix, and each prefix can be accessed from the settings.SYNOPSIS# You will rarely if ever need to construct settings yourself, usually a # component of Test2::Harness will expose them to you. my $settings = $thing->settings; # All prefixes have a method generated for them via AUTOLOAD my $display = $settings->display; # You can also use the prefix method my $display = $settings->prefix('display'); # The prefix can be used in a similar way my $verbose = $settings->display->verbose; See Test2::Harness::Settings::Prefix for more details on how to use the prefixes. METHODSNote that any prefix that does not conflict with the predefined methods can be accessed via AUTOLOAD generating the methods as needed.
SOURCEThe source code repository for Test2-Harness can be found at http://github.com/Test-More/Test2-Harness/.MAINTAINERS
AUTHORS
COPYRIGHTCopyright 2020 Chad Granum <exodist7@gmail.com>.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://dev.perl.org/licenses/
Visit the GSP FreeBSD Man Page Interface. |