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

NAME

Module::Install::TestVars - Setting and Passing test variables.

SYNOPSIS

In your Makefile.PL,

  use inc::Module::Install;

  test_vars
    TEST_DBI_DSN      => +{ default => 'dbi:mysql:dbname=test', prompt => 'input DBI DSN param' },
    TEST_DBI_USER     => +{ default => 'root', prompt => 'input DBI USER param', },
    TEST_DBI_PASSWORD => +{ default => '', prompt => 'input DBI PASSWORD param', };

Running Makefile.PL, asking values and passing variables to tests.

In your test,

  use Test::More tests => 1;

  diag($ENV{TEST_DBI_DSN});      # 'dbi:mysql:dbname=test'
  diag($ENV{TEST_DBI_USER});     # 'root'
  diag($ENV{TEST_DBI_PASSWORD}); # ''

  ok(1);

DESCRIPTION

Module::Install::TestVars is module asking and setting test variable. Please see unit tests for usage details.

METHODS

test_vars %vars

key-setting.

AUTHOR

Toru Yamaguchi <zigorou@cpan.org>

SEE ALSO

LICENSE

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