This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Attribute-Handlers: Swap out base for parent in test files.
[perl5.git] / dist / Attribute-Handlers / t / constants.t
CommitLineData
39c882db
NC
1use strict;
2use Test::More tests => 1;
3use Attribute::Handlers;
4# This had been failing since the introduction of proxy constant subroutines
5use constant SETUP => undef;
6sub Test : ATTR(CODE) { };
7ok(1, "If we got here, CHECK didn't fail");