xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/t/lib/MyCustom.pm (revision 50b7afb2c2c0993b0894d4e34bf857cb13ed9c80)
1# avoid cut-n-paste exhaustion with this mixin
2
3package MyCustom;
4use strict;
5
6sub custom {
7    my $self = shift;
8    $main::CUSTOM{ ref($self) || $self }++;
9    return $self;
10}
11
121;
13