summaryrefslogtreecommitdiff
path: root/lib/CPAN/t/11mirroredby.t
blob: 8d5ee6ec45261df05f56977ff8ca1f29625027be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/perl -w

BEGIN {
	if ($ENV{PERL_CORE}) {
		chdir 't' if -d 't';
		unshift @INC, '../lib';
	}
}

use strict;
use lib "BUNDLE";
use Test::More tests => 6; 

use_ok( 'CPAN::FirstTime' );
can_ok( 'CPAN::Mirrored::By', 'new', 'continent', 'country', 'url' );
my $cmb = CPAN::Mirrored::By->new();
isa_ok( $cmb, 'CPAN::Mirrored::By' );

@$cmb = qw( continent country url );
is( $cmb->continent(), 'continent',
	'continent() should return continent entry' );
is( $cmb->country(), 'country', 'country() should return country entry' );
is( $cmb->url(), 'url', 'url() should return url entry' );

__END__
# Local Variables:
# mode: cperl
# cperl-indent-level: 2
# End: