io_file.t
来自「source of perl for linux application,」· T 代码 · 共 56 行
T
56 行
#!./perl -wBEGIN { unless(grep /blib/, @INC) { chdir 't' if -d 't'; @INC = '../lib'; }}use strict;require($ENV{PERL_CORE} ? "./test.pl" : "./t/test.pl");plan(tests => ($^O =~ /MSWin32/ ? 9 : 6));my $Class = 'IO::File';my $All_Chars = join '', "\r\n", map( chr, 1..255 ), "zzz\n\r";my $File = 'bin.'.$$;my $Expect = quotemeta $All_Chars;use_ok( $Class );can_ok( $Class, "binmode" );### file the file with binary data;### use standard open to make sure we can compare binmodes### on both.{ my $tmp; open $tmp, ">$File" or die "Could not open '$File': $!"; binmode $tmp; print $tmp $All_Chars; close $tmp;}### now read in the file, once without binmode, once with.### without binmode should fail at least on win32...if( $^O =~ /MSWin32/ ) { my $fh = $Class->new; isa_ok( $fh, $Class ); ok( $fh->open($File), " Opened '$File'" ); my $cont = do { local $/; <$fh> }; unlike( $cont, qr/$Expect/, " Content match fails without binmode" );} ### now with binmode, it must pass { my $fh = $Class->new; isa_ok( $fh, $Class ); ok( $fh->open($File), " Opened '$File' $!" ); ok( $fh->binmode, " binmode enabled" ); my $cont = do { local $/; <$fh> }; like( $cont, qr/$Expect/, " Content match passes with binmode" );} unlink $File;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?