test_requires 'DBD::SQLite' => 1.13;
test_requires 'Test::Builder' => 0.33;
test_requires 'Test::Warn' => 0.11;
-test_requires 'Test::NoWarnings' => 0.08;
test_requires 'Test::Exception' => 0;
install_script 'script/dbicadmin';
plan skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@"
if $@;
plan skip_all => "DateTime required" unless eval { require DateTime };
- plan tests => 1;
+ plan tests => 2;
}
-use Test::NoWarnings;
+
+# Don't use Test::NoWarnings because of an unrelated DBD::SQLite warning.
+my @warnings;
+local $SIG{__WARN__} = sub {
+ push @warnings, @_;
+};
{
package Thing;
my $thing = Thing->construct({ thing_id => 23, this => 42 });
$thing->set( this => undef );
+is $thing->get( "this" ), undef, 'undef set';
$thing->discard_changes;
+
+is @warnings, 0, 'no warnings';