Institute a central "load this first in testing" package
[dbsrgits/DBIx-Class.git] / t / relationship / dynamic_foreign_columns.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
38fe1ff9 3use strict;
4use warnings;
5
6use Test::More;
c0329273 7
38fe1ff9 8use DBICTest;
9
10require DBICTest::DynamicForeignCols::TestComputer;
11
12is_deeply (
13 [ DBICTest::DynamicForeignCols::TestComputer->columns ],
14 [qw( test_id computer_id )],
15 'All columns properly defined from DBICTest::DynamicForeignCols::Computer parentclass'
16);
17
18done_testing;