Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / early_column_heisenbug.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5
6 use lib 't/cdbi/testlib';
7 use DBIC::Test::SQLite (); # this will issue the necessary SKIPs on missing reqs
8
9 {
10     package Thing;
11     use base qw(DBIx::Class::CDBICompat);
12 }
13
14 {
15     package Stuff;
16     use base qw(DBIx::Class::CDBICompat);
17 }
18
19 # There was a bug where looking at a column group before any were
20 # set would cause them to be shared across classes.
21 is_deeply [Stuff->columns("Essential")], [];
22 Thing->columns(Essential => qw(foo bar baz));
23 is_deeply [Stuff->columns("Essential")], [];
24
25 done_testing;