|
NAMEConfig::Model::Tester::Setup - Common test setup functions for Config::ModelVERSIONversion 4.007SYNOPSIS# in t/some_test.t use warnings; use strict; use Config::Model::Tester::Setup qw/init_test setup_test_dir/; my ($model, $trace) = init_test(); # pseudo root where config files are written by config-model as setup # by init_test my $wr_root = setup_test_dir(); DESCRIPTIONThis module provide 2 functions to setup a test environment that can be used in most test involving Config::Model.FUNCTIONSinit_testScan test command line options and initialise a Config::Model object.Returns a list containing a Config::Model object, a boolean and a hash. The boolean is true if option "--trace" was used on the command line. Default command options are:
More options can be passed to "init_test" using option definitions like the one defined in Getopt::Long . The value of the command line options are returned in the 3rd returned value. For instance, for a test named "t/my_test.t" calling : init_test('foo', 'bar=s') The test file can be run with: perl t/my_test.t --foo --bar=baz --log --trace "init_test" returns: ($model, 1, { foo => 1, bar => 'baz', log => 1 , trace => 1, error => 0 }) setup_test_dirCleanup and create a test directory in "wr_root/test-script-name". For instance this function creates directory "wr_root/foo" for test "t/foo.t"Returns a Path::Tiny object of the test directory or a string if "setup_test_dir" is called with "stringify => 1". SEE ALSO
AUTHORDominique DumontCOPYRIGHT AND LICENSEThis software is Copyright (c) 2013-2020 by Dominique Dumont.This is free software, licensed under: The GNU Lesser General Public License, Version 2.1, February 1999
Visit the GSP FreeBSD Man Page Interface. |