App-SimpleScan
view release on metacpan or search on metacpan
t/42nested_sub.t view on Meta::CPAN
#!/usr/local/bin/perl
use Test::More tests=>1;
use Test::Differences;
use lib 't';
$ENV{HARNESS_PERL_SWITCHES} = "" unless defined $ENV{HARNESS_PERL_SWITCHES};
@output = `$^X $ENV{HARNESS_PERL_SWITCHES} -Iblib/lib bin/simple_scan -gen <examples/ss_nested.in`;
@expected = map {"$_\n"} split /\n/,<<EOF;
use Test::More tests=>1;
use Test::WWW::Simple;
use strict;
mech->agent_alias(\'Windows IE 6\');
page_like "http://yahoo.com",
qr/Yahoo!/,
qq(check China production [http://yahoo.com] [/Yahoo!/ should match]);
EOF
push @expected, "\n";
eq_or_diff(\@output, \@expected, "working output as expected");
( run in 0.521 second using v1.01-cache-2.11-cpan-6aa56a78535 )