handle "use warnings FATAL => 'all' and set use_namespaces=1 for dynamic schemas...
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / lib / DBICTestMethods / Namespaces / Schema / Result / Foo.pm
diff --git a/t/lib/DBICTestMethods/Namespaces/Schema/Result/Foo.pm b/t/lib/DBICTestMethods/Namespaces/Schema/Result/Foo.pm
new file mode 100644 (file)
index 0000000..277c506
--- /dev/null
@@ -0,0 +1,12 @@
+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';
+}
+
+1;