The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/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( 
  {
    continent => "continent",
    country => "country",
    http => "http",
    ftp => "ftp",
  }
);
isa_ok( $cmb, 'CPAN::Mirrored::By' );

is( $cmb->continent(), 'continent',
    'continent() should return continent entry' );
is( $cmb->country(), 'country', 'country() should return country entry' );
is( $cmb->url(), 'http', 'url() should return best url entry' );

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