File: uri.t

package info (click to toggle)
libwww-mechanize-perl 2.20-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,080 kB
  • sloc: perl: 4,623; makefile: 6
file content (10 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
use strict;
use warnings;

use Test::More;
use WWW::Mechanize ();

my $mech = WWW::Mechanize->new;
is( $mech->uri, undef, 'undef uri() with a pristine object' );

done_testing();