[BACK]Return to Build.PL CVS log [TXT][DIR] Up to [local] / trango / Net-Telnet-Trango

File: [local] / trango / Net-Telnet-Trango / Build.PL (download)

Revision 1.3, Mon Feb 5 19:39:33 2007 UTC (17 years, 3 months ago) by andrew
Branch: MAIN
Changes since 1.2: +17 -14 lines

Actually read in the file the same way.

use strict;
use warnings;
use Module::Build;
use File::Spec;
# $RedRiver: Build.PL,v 1.2 2007/02/05 19:21:02 andrew Exp $

my $cfg_file = File::Spec->catfile('t', 'do_network.tests');

my $builder = Module::Build->new(
    module_name         => 'Net::Telnet::Trango',
    license             => 'perl',
    dist_author         => 'Andrew Fresh <andrew@cpan.org>',
    dist_version_from   => 'lib/Net/Telnet/Trango.pm',
    build_requires => {
        'Test::More' => 0,
    },
    add_to_cleanup      => [ 'Net-Telnet-Trango-*', $cfg_file ],
);

my %cfg;
get_ap_config(\%cfg);

if (%cfg && open T,">$cfg_file") {
    while (my ($key, $value) = each %cfg) {
        print T $key, "\t", $value,"\n";
    }
    close T;
}

$builder->create_build_script();

sub get_ap_config
{
    my $cfg = shift;

    print <<EOB;

Net::Telnet::Trango needs to log into an AP to
perform it\'s full suite of tests. To log in, we
need a test AP and a password.

To skip these tests, hit "return".

EOB

    $cfg->{AP}       = $builder->prompt("AP: ", $cfg->{AP}) || return;
    $cfg->{PASSWD}   = $builder->prompt("Password:", $cfg->{PASSWD}) || return;
}