From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011121314 use strict;use warnings;use Test::More;use DateTime;## no critic (Variables::ProhibitPackageVars)ok( !$DateTime::IsPurePerl, 'XS implementation is loaded by default');done_testing();
use
strict;
warnings;
Test::More;
DateTime;
## no critic (Variables::ProhibitPackageVars)
ok(
!
$DateTime::IsPurePerl
,
'XS implementation is loaded by default'
);
done_testing();