4 eval { require DateTime };
5 plan skip_all => "Need DateTime for inflation tests" if $@;
9 DBICTest::Schema::CD->inflate_column( 'year',
10 { inflate => sub { DateTime->new( year => shift ) },
11 deflate => sub { shift->year } }
13 Class::C3->reinitialize;
16 my $cd = $schema->resultset("CD")->find(3);
18 is( ref($cd->year), 'DateTime', 'year is a DateTime, ok' );
20 is( $cd->year->month, 1, 'inflated month ok' );
23 my $now = DateTime->now;
27 ($cd) = $schema->resultset("CD")->search( year => $now->year );
28 is( $cd->year->year, $now->year, 'deflate ok' );