/usr/share/perl5/Test/Class/MethodInfo.pm is in libtest-class-perl 0.36-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | use strict;
use warnings;
package Test::Class::MethodInfo;
use Carp;
our $VERSION = '0.34';
sub new {
my ( $class, %param ) = @_;
my $self = bless {
name => $param{ name },
type => $param{ type } || 'test',
}, $class;
unless ( defined $param{num_tests} ) {
$param{ num_tests } = $self->is_type('test') ? 1 : 0;
};
$self->num_tests( $param{num_tests} );
return $self;
};
sub name { shift->{name} };
sub type { shift->{type} };
sub num_tests {
my ( $self, $n ) = @_;
if ( defined $n ) {
croak "$n not valid number of tests"
unless $self->is_num_tests($n);
$self->{ num_tests } = $n;
};
return $self->{ num_tests };
};
sub is_type {
my ( $self, $type ) = @_;
return $self->{ type } eq $type;
};
sub is_method_type {
my ( $self, $type ) = @_;
return $type =~ m/^(startup|setup|test|teardown|shutdown)$/s;
};
sub is_num_tests {
my ( $self, $num_tests ) = @_;
return $num_tests =~ m/^(no_plan)|(\+?\d+)$/s;
};
1;
__END__
=head1 NAME
Test::Class::MethodInfo - the info associated with a test method
=head1 SYNOPSIS
# Secret internal class
# not for public use
=head1 DESCRIPTION
Holds info related to particular test methods. Not part of the public API and likely to change or completely disappear. If you need to rely on any of this code let me know and we'll see if we can work something out.
=head1 METHODS
=over 4
=item B<new>
=item B<is_method_type>
=item B<is_num_tests>
=item B<is_type>
=item B<name>
=item B<type>
=item B<num_tests>
=back
=head1 BUGS
None known at the time of writing. Apart from the fact this seems a bit gnarly so I'm likely to tidy it up at some point.
If you find any please let me know by e-mail, or report the problem with L<http://rt.cpan.org/>.
=head1 TO DO
If you think this module should do something that it doesn't (or does something that it shouldn't) please let me know.
You can see my current to do list at L<http://adrianh.tadalist.com/lists/public/15423>, with an RSS feed of changes at L<http://adrianh.tadalist.com/lists/feed_public/15423>.
=head1 AUTHOR
Adrian Howard <adrianh@quietstars.com>
If you can spare the time, please drop me a line if you find this module useful.
=head1 SEE ALSO
=over 4
=item L<Test::Class>
What you should be looking at rather than this internal stuff
=back
=head1 LICENCE
Copyright 2006 Adrian Howard, All Rights Reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
=cut
|