use
strict;
use
warnings;
use
Test::More;
use
DBICTest;
is_deeply (
[ DBICTest::DynamicForeignCols::TestComputer->columns ],
[
qw( test_id computer_id )
],
'All columns properly defined from DBICTest::DynamicForeignCols::Computer parentclass'
);
done_testing;