Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / early_column_heisenbug.t
CommitLineData
96eab6f8 1use strict;
4a233f30 2use warnings;
96eab6f8 3
4use Test::More;
5
d9bd5195 6use lib 't/cdbi/testlib';
7use DBIC::Test::SQLite (); # this will issue the necessary SKIPs on missing reqs
96eab6f8 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.
21is_deeply [Stuff->columns("Essential")], [];
22Thing->columns(Essential => qw(foo bar baz));
23is_deeply [Stuff->columns("Essential")], [];
24
89bddb49 25done_testing;