File: All.pm

package info (click to toggle)
libtest-inline-perl 2.214-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, trixie
  • size: 596 kB
  • sloc: perl: 2,016; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 265 bytes parent folder | download | duplicates (7)
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
package Test::AllOne;

=pod

=begin testing foo 1

ok( 1, 'Good test' );

=end testing

=cut

use strict;

print "Hello World!\n";

package Test::AllTwo;

=pod

=begin testing foo

ok( 1, 'Good test' );

=end testing

=cut

use strict;

print "Hello World!\n";

1;