Subject: | missing "binmode" |
Hi, Koichi,
Long time no see.
As you can see from my cpan-testers report #2493023, the test ended in failure under
MSWin32.
That is because you forget "binmode." taht is, you should do as follows:
--- 01_methods.t.org Mon Oct 27 20:28:20 2008
+++ 01_methods.t Mon Oct 27 20:38:09 2008
@@ -21,6 +21,7 @@
sub fileread {
my $fh = IO::File->new(shift, 'r');
+ $fh->binmode();
return do {local $/ = undef; <$fh>};
}
In fact, after applying that patch, the test is as follows:
C:\temp\GD-Tab-Guitar-0.02>perl -Iblib t/01_methods.t
1..9
ok 1
ok 2
ok 3
ok 4
ok 5
ok 6
ok 7
ok 8
ok 9
Best regards,
Taro Nishino