Converted all relevant tests to use new_dbm instead of new_fh and all tests (except...
[dbsrgits/DBM-Deep.git] / t / 25_tie_return_value.t
index 33943f3..6efc518 100644 (file)
@@ -1,6 +1,7 @@
 use strict;
+use warnings FATAL => 'all';
 
-use Test::More tests => 5;
+use Test::More;
 use t::common qw( new_fh );
 
 use_ok( 'DBM::Deep' );
@@ -24,3 +25,5 @@ use Scalar::Util qw( reftype );
     isa_ok( $obj, 'DBM::Deep' );
     is( reftype( $obj ), 'HASH', "... and its underlying representation is an HASH" );
 }
+
+done_testing;