Retire DBIC::DebugObj, replace with $dbictest_schema->is_executed_sql_bind()
[dbsrgits/DBIx-Class.git] / t / relationship / dynamic_foreign_columns.t
CommitLineData
38fe1ff9 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
8require DBICTest::DynamicForeignCols::TestComputer;
9
10is_deeply (
11 [ DBICTest::DynamicForeignCols::TestComputer->columns ],
12 [qw( test_id computer_id )],
13 'All columns properly defined from DBICTest::DynamicForeignCols::Computer parentclass'
14);
15
16done_testing;