Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > b629ba3dbba0478ecfc3f47522206b3f > files > 79

perl-Test-Harness-3.290.0-2.mga4.x86_64.rpm

#!/usr/bin/perl

use strict;
use warnings;

use Test::More tests => 1;
use Test::WWW::Mechanize;

my $mech = Test::WWW::Mechanize->new;
my $url  = shift;
$mech->get_ok(
    $url,
    "We should be able to fetch ($url)"
);