📄 io_file.t
字号:
#!./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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -