X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FCafeInsertion%2FResult%2FCoffee.pm;h=0dc65b0224bbd866ec1c0a52915fb0bb6511c841;hb=b5c5e0464b9c34d051cf87698d3b97d88f228d54;hp=4b4fdce5e7494c4597b8d4250511b18bca1597ff;hpb=4eaa25b5cb5580b2fc2c94b30e977b83e08bd0e6;p=dbsrgits%2FDBIx-Class-ResultSource-MultipleTableInheritance.git diff --git a/t/lib/CafeInsertion/Result/Coffee.pm b/t/lib/CafeInsertion/Result/Coffee.pm index 4b4fdce..0dc65b0 100644 --- a/t/lib/CafeInsertion/Result/Coffee.pm +++ b/t/lib/CafeInsertion/Result/Coffee.pm @@ -1,4 +1,5 @@ -package CafeInsertion::Result::Coffee; +package # hide from PAUSE + CafeInsertion::Result::Coffee; use strict; use warnings; @@ -8,8 +9,13 @@ use aliased 'DBIx::Class::ResultSource::MultipleTableInheritance' => 'MTI'; __PACKAGE__->table_class(MTI); __PACKAGE__->table('coffee'); __PACKAGE__->add_columns( - "id", { data_type => "integer", is_auto_increment => 1, sequence => '_coffee_id_seq'}, - "flavor", { data_type => "text", default_value => "good" }, + "id", + { data_type => "integer", + is_auto_increment => 1, + sequence => '_coffee_id_seq' + }, + "flavor", + { data_type => "text", default_value => "good" }, ); __PACKAGE__->set_primary_key("id");