add an extra symbol to the rt59849 test
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / DBICTestMethods / Namespaces / Schema / Result / Foo.pm
CommitLineData
0f21885a 1package DBICTestMethods::Namespaces::Schema::Result::Foo;
2
3use strict;
4use warnings FATAL => 'all';
5use English '-no_match_vars';
6
7sub biz {
8 my ($self) = @_;
9 return 'foo bar biz baz boz noz schnozz';
10}
11
795c7cff 12sub boz {
13 my ($self) = @_;
14 return 'foo bar biz baz boz noz schnozz';
15}
16
0f21885a 171;