use strict;
use Test::Needs qw( Sub::Name Sub::Identify );
BEGIN {
if ( $INC{'Sub/Util.pm'} ) {
plan skip_all => "Sub::Util needes not to be preloaded for this test";
exit 0;
}
}
ok( Sub::Identify::sub_name( \&Log::Contextual::WarnLogger::Fancy::is_info ),
'is_info' );
done_testing;