Massive cleanup of DateTime test dependencies, other interim
[dbsrgits/DBIx-Class.git] / t / cdbi / set_vs_DateTime.t
1 use strict;
2 use Test::More;
3 use Test::Exception;
4 use lib 't/cdbi/testlib';
5
6 BEGIN {
7   eval "use DBIx::Class::CDBICompat;use DateTime 0.55;";
8   plan skip_all => "DateTime 0.55, Class::Trigger and DBIx::ContextualFetch required: $@"
9     if $@;
10   plan tests => 1;
11 }
12
13 {
14     package Thing;
15
16     use base 'DBIC::Test::SQLite';
17
18     Thing->columns(All  => qw[thing_id this that date]);
19 }
20
21 my $thing = Thing->construct({ thing_id => 23, date => "01-02-1994" });
22 my $date = DateTime->now;
23 lives_ok {
24   $thing->set( date => $date );
25   $thing->set( date => $date );
26 };
27
28
29
30 $thing->discard_changes;