5 eval "use DBIx::Class::CDBICompat;";
6 plan $@ ? (skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@")
11 use lib 't/cdbi/testlib';
17 Title => "Breaking the Waves",
18 Director => 'Lars von Trier',
22 my $film = Film->construct({
23 Title => "Breaking the Waves",
24 Director => 'Lars von Trier',
28 is $film->title, "Breaking the Waves";
29 is $film->director, "Lars von Trier";
30 is $film->rating, "R",
31 "constructed objects can get missing data from the db";
37 Foo->columns( TEMP => qw(temp_thing) );
38 my $film = Foo->construct({
42 ::is $film->temp_thing, 23, "construct sets temp columns";