41457495c5807b0d09db1ca1da3fe3e3d9053c4d
[dbsrgits/DBIx-Class.git] / t / 89inflate_datetime.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my $schema = DBICTest->init_schema();
9
10 eval { require DateTime::Format::MySQL };
11 plan skip_all => "Need DateTime::Format::MySQL for inflation tests" if $@;
12
13 plan tests => 4;
14
15 # inflation test
16 my $event = $schema->resultset("Event")->find(1);
17
18 isa_ok($event->starts_at, 'DateTime', 'DateTime returned');
19
20 # klunky, but makes older Test::More installs happy
21 my $starts = $event->starts_at . '';
22 is($starts, '2006-04-25T22:24:33', 'Correct date/time');
23
24 # create using DateTime
25 my $created = $schema->resultset('Event')->create({
26     starts_at => DateTime->new(year=>2006, month=>6, day=>18)
27 });
28 my $created_start = $created->starts_at;
29
30 isa_ok($created->starts_at, 'DateTime', 'DateTime returned');
31 is($created_start, '2006-06-18T00:00:00', 'Correct date/time');