45ce621581c19cc639033fd29aaeeadf54bb1619
[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;";
8   plan skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@"
9     if $@;
10   plan skip_all => "DateTime required" unless eval { require DateTime };
11   plan tests => 1;
12 }
13
14 {
15     package Thing;
16
17     use base 'DBIC::Test::SQLite';
18
19     Thing->columns(All  => qw[thing_id this that date]);
20 }
21
22 my $thing = Thing->construct({ thing_id => 23, date => "01-02-1994" });
23 my $date = DateTime->now;
24 lives_ok {
25   $thing->set( date => $date );
26   $thing->set( date => $date );
27 };
28
29
30
31 $thing->discard_changes;