Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / cdbi / testlib / Order.pm
CommitLineData
8273e845 1package # hide from PAUSE
c6d74d3e 2 Order;
ea2e61bf 3
4a233f30 4use warnings;
ea2e61bf 5use strict;
4a233f30 6
97d61088 7use base 'DBIC::Test::SQLite';
ea2e61bf 8
9__PACKAGE__->set_table('orders');
10__PACKAGE__->table_alias('orders');
11__PACKAGE__->columns(Primary => 'film');
12__PACKAGE__->columns(Others => qw/orders/);
13
14sub create_sql {
6a3bf251 15 return qq{
16 film VARCHAR(255),
17 orders INTEGER
18 };
ea2e61bf 19}
20
211;
22