04mods.t

来自「SinFP是一种新的识别对方计算机操作系统类型的工具」· T 代码 · 共 59 行

T
59
字号
#!perl -wuse strict;use Test::More tests => 12;## ----------------------------------------------------------------------------## 04mods.t - ...## ----------------------------------------------------------------------------# Note: # the modules tested here are all marked as new and not guaranteed, so this if# they change, these will fail.## ----------------------------------------------------------------------------BEGIN { 	use_ok( 'DBI' );        # load these first, since the other two load them    # and we want to catch the error first    use_ok( 'DBI::Const::GetInfo::ANSI' );    use_ok( 'DBI::Const::GetInfo::ODBC' );        	use_ok( 'DBI::Const::GetInfoType',    qw(%GetInfoType) );	use_ok( 'DBI::Const::GetInfoReturn',  qw(%GetInfoReturnTypes %GetInfoReturnValues) );}## test GetInfoTypecmp_ok(scalar(keys(%GetInfoType)), '>', 1, '... we have at least one key in the GetInfoType hash');is_deeply(    \%GetInfoType,    { %DBI::Const::GetInfo::ANSI::InfoTypes, %DBI::Const::GetInfo::ODBC::InfoTypes },    '... the GetInfoType hash is constructed from the ANSI and ODBC hashes'    );## test GetInfoReturnTypescmp_ok(scalar(keys(%GetInfoReturnTypes)), '>', 1, '... we have at least one key in the GetInfoReturnType hash');is_deeply(    \%GetInfoReturnTypes,    { %DBI::Const::GetInfo::ANSI::ReturnTypes, %DBI::Const::GetInfo::ODBC::ReturnTypes },    '... the GetInfoReturnType hash is constructed from the ANSI and ODBC hashes'    );## test GetInfoReturnValuescmp_ok(scalar(keys(%GetInfoReturnValues)), '>', 1, '... we have at least one key in the GetInfoReturnValues hash');# ... testing GetInfoReturnValues any further would be difficult## test the two methods found in DBI::Const::GetInfoReturncan_ok('DBI::Const::GetInfoReturn', 'Format');can_ok('DBI::Const::GetInfoReturn', 'Explain');1;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?