bad_plan.t
来自「source of perl for linux application,」· T 代码 · 共 39 行
T
39 行
#!/usr/bin/perl -wBEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; @INC = '../lib'; }}my $test_num = 1;# Utility testing functions.sub ok ($;$) { my($test, $name) = @_; my $ok = ''; $ok .= "not " unless $test; $ok .= "ok $test_num"; $ok .= " - $name" if defined $name; $ok .= "\n"; print $ok; $test_num++; return $test;}use Test::Builder;my $Test = Test::Builder->new;print "1..2\n";eval { $Test->plan(7); };ok( $@ =~ /^plan\(\) doesn't understand 7/, 'bad plan()' ) || print STDERR "# $@";eval { $Test->plan(wibble => 7); };ok( $@ =~ /^plan\(\) doesn't understand wibble 7/, 'bad plan()' ) || print STDERR "# $@";
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?