--- t/10-xs.t 2008/08/17 22:35:45 5 +++ t/10-xs.t 2008/08/17 22:54:02 7 @@ -5,7 +5,7 @@ use blib; -use Test::More tests => 8; +use Test::More tests => 9; use Test::Exception; use Data::Dump qw/dump/; @@ -15,14 +15,16 @@ cmp_ok( $Search::TokyoDystopia::debug, '==', 0, '$debug' ); -cmp_ok( Search::TokyoDystopia::tcidberrmsg(0), 'eq', 'success', 'tcidberrmsg' ); +cmp_ok( Search::TokyoDystopia::errmsg(0), 'eq', 'success', 'errmsg' ); -ok( my $db = Search::TokyoDystopia::tcidbnew, 'tcidbnew' ); # FIXME check better +ok( my $db = Search::TokyoDystopia::new, 'new' ); # FIXME check better -ok( ! Search::TokyoDystopia::tcidbdel( $db ), 'tcidbdel' ); +ok( ! Search::TokyoDystopia::del( $db ), 'del' ); -ok( $db = Search::TokyoDystopia::tcidbnew, 'tcidbnew again' ); +ok( $db = Search::TokyoDystopia::new, 'new again' ); -is( Search::TokyoDystopia::tcidbecode( $db ), 0, 'tcidbecode' ); +is( Search::TokyoDystopia::ecode( $db ), 0, 'ecode' ); -is( Search::TokyoDystopia::tcidbtune( $db, 0, 0, 0, 0 ), 1, 'tcidbtune' ); +is( Search::TokyoDystopia::tune( $db, 0, 0, 0, 0 ), 1, 'tune' ); + +is( Search::TokyoDystopia::setcache( $db, 0, 0 ), 1, 'setcache' );