File: bad_dependency

package info (click to toggle)
libtest-inline-perl 2.214-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 596 kB
  • sloc: perl: 2,016; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 213 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
package Foo::Bad;

# This package has some bad stuff

=pod

=begin testing foo after bar

is( Foo::Bar->foo, 1, '->foo returns expected value' );

=end testing

=cut

sub foo {
	my $self = shift;
	return 1;
}

1;