The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
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();