Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Extra / Foo.pm
index cee710e..2572ac3 100644 (file)
@@ -1,7 +1,10 @@
-package DBICTest::Extra::Foo;
+package # hide from PAUSE 
+    DBICTest::Extra::Foo;
 use base 'DBIx::Class';
 
 __PACKAGE__->load_components(qw/ ResultSetManager Core /);
 __PACKAGE__->table('foo');
 
-sub bar : resultset { 'good' }
+sub bar : ResultSet { 'good' }
+
+1;