Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICNSTest / Rslt / A.pm
index 832500a..8d9a6e1 100644 (file)
@@ -1,5 +1,13 @@
 package DBICNSTest::Rslt::A;
+
+use warnings;
+use strict;
+
 use base qw/DBIx::Class::Core/;
 __PACKAGE__->table('a');
 __PACKAGE__->add_columns('a');
+
+# part of a test, do not remove
+$_ = 'something completely utterly bogus';
+
 1;