File: Foo.pm

package info (click to toggle)
libdbix-class-schema-loader-perl 0.07042-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,428 kB
  • ctags: 660
  • sloc: perl: 12,575; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package DBICTestMethods::Namespaces::Schema::Result::Foo;

use strict;
use warnings FATAL => 'all';
use English '-no_match_vars';

sub biz {
    my ($self) = @_;
    return 'foo bar biz baz boz noz schnozz';
}

sub boz {
    my ($self) = @_;
    return 'foo bar biz baz boz noz schnozz';
}

1;