#!/usr/bin/perl
use strict;
use Test::More tests => 1;
my $mech = Test::WWW::Mechanize->new;
my $url = shift;
$mech->get_ok(
$url,
"We should be able to fetch ($url)"
);