1 package # hide from PAUSE
4 use base 'DBIC::Test::SQLite';
7 __PACKAGE__->set_table('Movies');
8 __PACKAGE__->columns('Primary', 'Title');
9 __PACKAGE__->columns('Essential', qw( Title ));
10 __PACKAGE__->columns('Directors', qw( Director CoDirector ));
11 __PACKAGE__->columns('Other', qw( Rating NumExplodingSheep HasVomit ));
17 codirector VARCHAR(80),
19 numexplodingsheep INTEGER,
24 sub create_test_film {
25 return shift->create({
27 Director => 'Peter Jackson',
29 NumExplodingSheep => 1,
36 sub DESTROY { shift->delete }