--- t/10-xs.t 2008/08/18 17:26:01 15 +++ t/10-xs.t 2008/08/18 17:45:56 17 @@ -5,7 +5,7 @@ use blib; -use Test::More tests => 15; +use Test::More tests => 18; use Test::Exception; use Data::Dump qw/dump/; @@ -43,4 +43,7 @@ ok( tcidbout( $idb, 1, ), 'tcidbout' ); +ok( tcidbput( $idb, 42, 'some data' ), 'tcidbput again' ); +is( tcidbget( $idb, 42 ), 'some data', 'tcidbget' ); +ok( ! tcidbget( $idb, 1 ), 'tcidbget non-existing' ); diag tcidberrmsg( tcidbecode( $idb ) );