The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use Test::More;
use Net::CIDR::MobileJP;
use t::Utils;

eval "use YAML::Syck";
plan skip_all => "missing YAML::Syck" if $@;
plan tests => 4;

ok $INC{'YAML/Syck.pm'};
ok !$INC{'YAML.pm'};
is $Net::CIDR::MobileJP::yaml_loader, \&YAML::Syck::LoadFile;
t::Utils->check();