⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prompt.t

📁 source of perl for linux application,
💻 T
字号:
#!/usr/bin/perl -wBEGIN {    if( $ENV{PERL_CORE} ) {        chdir 't' if -d 't';        @INC = ('../lib', 'lib');    }    else {        unshift @INC, 't/lib';    }}use strict;use Test::More tests => 11;use ExtUtils::MakeMaker;use TieOut;use TieIn;eval q{    prompt();};like( $@, qr/^Not enough arguments for ExtUtils::MakeMaker::prompt/,                                            'no args' );eval {    prompt(undef);};like( $@, qr/^prompt function called without an argument/,                                             'undef message' );my $stdout = tie *STDOUT, 'TieOut' or die;$ENV{PERL_MM_USE_DEFAULT} = 1;is( prompt("Foo?"), '',     'no default' );like( $stdout->read,  qr/^Foo\?\s*\n$/,      '  question' );is( prompt("Foo?", undef), '',     'undef default' );like( $stdout->read,  qr/^Foo\?\s*\n$/,      '  question' );is( prompt("Foo?", 'Bar!'), 'Bar!',     'default' );like( $stdout->read,  qr/^Foo\? \[Bar!\]\s+Bar!\n$/,      '  question' );SKIP: {    skip "eof() doesn't honor ties in 5.5.3", 3 if $] < 5.006;    $ENV{PERL_MM_USE_DEFAULT} = 0;    close STDIN;    my $stdin = tie *STDIN, 'TieIn' or die;    $stdin->write("From STDIN");    ok( !-t STDIN,      'STDIN not a tty' );    is( prompt("Foo?", 'Bar!'), 'From STDIN',     'from STDIN' );    like( $stdout->read,  qr/^Foo\? \[Bar!\]\s*$/,      '  question' );}

⌨️ 快捷键说明

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