From: Rafael Kitover Date: Tue, 17 May 2011 18:43:19 +0000 (-0400) Subject: add an extra symbol to the rt59849 test X-Git-Tag: 0.07011~115 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Schema-Loader.git;a=commitdiff_plain;h=795c7cff5effce0a8148f004a858e57b7eb249d2 add an extra symbol to the rt59849 test --- diff --git a/t/lib/DBICTestMethods/Namespaces/Schema/Result/Foo.pm b/t/lib/DBICTestMethods/Namespaces/Schema/Result/Foo.pm index 277c506..e45caf5 100644 --- a/t/lib/DBICTestMethods/Namespaces/Schema/Result/Foo.pm +++ b/t/lib/DBICTestMethods/Namespaces/Schema/Result/Foo.pm @@ -9,4 +9,9 @@ sub biz { return 'foo bar biz baz boz noz schnozz'; } +sub boz { + my ($self) = @_; + return 'foo bar biz baz boz noz schnozz'; +} + 1;