The Perl Toolchain Summit 2025 Needs You: You can help 🙏 Learn more

#!perl
##############################################################################
# $Date: 2009-07-21 08:50:56 -0700 (Tue, 21 Jul 2009) $
# $Author: clonezone $
# $Revision: 3404 $
##############################################################################
use 5.006001;
use strict;
use Test::More tests => 8;
#-----------------------------------------------------------------------------
our $VERSION = '1.101_001';
#-----------------------------------------------------------------------------
BEGIN {
use_ok('Perl::Critic::Utils::Perl', qw{ :all } );
}
#-----------------------------------------------------------------------------
# export tests
can_ok('main', 'symbol_without_sigil');
#-----------------------------------------------------------------------------
# name_without_sigil tests
{
foreach my $sigil ( q<>, qw< $ @ % * & > ) {
my $symbol = "${sigil}foo";
is(
symbol_without_sigil($symbol),
'foo',
"symbol_without_sigil($symbol)",
);
}
}
#-----------------------------------------------------------------------------
# ensure we run true if this test is loaded by
# t/05_utils_ppi.t_without_optional_dependencies.t
1;
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# fill-column: 78
# indent-tabs-mode: nil
# c-indentation-style: bsd
# End:
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :