Commit | Line | Data |
0567538f |
1 | sub run_tests { |
1edaf6fe |
2 | my $schema = shift; |
0567538f |
3 | |
4 | eval { require DateTime }; |
5 | plan skip_all => "Need DateTime for inflation tests" if $@; |
6 | |
e9100ff7 |
7 | plan tests => 3; |
0567538f |
8 | |
2d679367 |
9 | DBICTest::Schema::CD->inflate_column( 'year', |
0567538f |
10 | { inflate => sub { DateTime->new( year => shift ) }, |
11 | deflate => sub { shift->year } } |
12 | ); |
2d679367 |
13 | Class::C3->reinitialize; |
0567538f |
14 | |
15 | # inflation test |
f9db5527 |
16 | my $cd = $schema->resultset("CD")->find(3); |
0567538f |
17 | |
18 | is( ref($cd->year), 'DateTime', 'year is a DateTime, ok' ); |
19 | |
20 | is( $cd->year->month, 1, 'inflated month ok' ); |
21 | |
22 | # deflate test |
23 | my $now = DateTime->now; |
24 | $cd->year( $now ); |
25 | $cd->update; |
26 | |
f9db5527 |
27 | ($cd) = $schema->resultset("CD")->search( year => $now->year ); |
0567538f |
28 | is( $cd->year->year, $now->year, 'deflate ok' ); |
29 | |
30 | } |
31 | |
32 | 1; |