20fe77b67cc36f560f1990acc3a26769e438e4ed
[dbsrgits/DBIx-Class.git] / t / cdbi / set_to_undef.t
1 use strict;
2 use Test::More;
3
4 use lib 't/cdbi/testlib';
5 use DBIC::Test::SQLite (); # this will issue the necessary SKIPs on missing reqs
6
7 BEGIN {
8   eval { require DateTime; DateTime->VERSION(0.55) }
9     or plan skip_all => 'DateTime 0.55 required for this test';
10 }
11
12
13 # Don't use Test::NoWarnings because of an unrelated DBD::SQLite warning.
14 my @warnings;
15 local $SIG{__WARN__} = sub {
16     push @warnings, @_;
17 };
18
19 {
20     package Thing;
21
22     use base 'DBIC::Test::SQLite';
23
24     Thing->columns(All  => qw[thing_id this that date]);
25 }
26
27 my $thing = Thing->construct({ thing_id => 23, this => 42 });
28 $thing->set( this => undef );
29 is $thing->get( "this" ), undef, 'undef set';
30 $thing->discard_changes;
31
32 is @warnings, 0, 'no warnings';
33
34 done_testing;