Tests with warnings

Test::More used to have a problem testing undefined values

use Test::More tests => 1;
is( undef, undef,   'undef is undef' );

The test will pass, but there would be warnings.

| toc |