File: ChildWithPod.pm

package info (click to toggle)
libpod-coverage-trustpod-perl 0.100003-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 160 kB
  • ctags: 22
  • sloc: perl: 184; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 239 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package ChildWithPod;

use base qw(BaseWithNoPod);

=head1 NAME

ChildWithPod - And we inherit from someone without it, how rude!


=head1 METHODS

=head2 blah

Blah method

=cut

sub blah {}

sub zzz { 'Covered by trustme in tests' }

1;