handle "use warnings FATAL => 'all' and set use_namespaces=1 for dynamic schemas...
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / DBICTestMethods / Backcompat / Schema / Foo.pm
CommitLineData
0f21885a 1package DBICTestMethods::Backcompat::Schema::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
121;