Skip to content

Commit

Permalink
Import of HMBRAND/Text-CSV_XS-0.76 from CPAN.
Browse files Browse the repository at this point in the history
gitpan-cpan-distribution: Text-CSV_XS
gitpan-cpan-version:      0.76
gitpan-cpan-path:         HMBRAND/Text-CSV_XS-0.76.tgz
gitpan-cpan-author:       HMBRAND
gitpan-cpan-maturity:     released
  • Loading branch information
H.Merijn Brand authored and Gitpan committed Oct 22, 2014
1 parent 249295c commit 9787629
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CSV_XS.pm
Expand Up @@ -30,7 +30,7 @@ use DynaLoader ();
use Carp;

use vars qw( $VERSION @ISA );
$VERSION = "0.75";
$VERSION = "0.76";
@ISA = qw( DynaLoader );
bootstrap Text::CSV_XS $VERSION;

Expand Down
3 changes: 3 additions & 0 deletions ChangeLog
@@ -1,3 +1,6 @@
2010-10-09 0.76 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Windows doesn't support STDERR redirection as used in t/80_diag

2010-10-05 0.75 - H.Merijn Brand <h.m.brand@xs4all.nl>
* Fixed undefinedness of $\ in print (RT#61880)

Expand Down
4 changes: 2 additions & 2 deletions META.yml
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Text-CSV_XS
version: 0.75
version: 0.76
abstract: Comma-Separated Values manipulation routines
license: perl
author:
Expand All @@ -10,7 +10,7 @@ distribution_type: module
provides:
Text::CSV_XS:
file: CSV_XS.pm
version: 0.75
version: 0.76
requires:
perl: 5.005
DynaLoader: 0
Expand Down
5 changes: 4 additions & 1 deletion t/80_diag.t
Expand Up @@ -116,7 +116,10 @@ $csv = Text::CSV_XS->new ({ auto_diag => 1 });
like ($@, qr '^# CSV_XS ERROR: 2027 -', "2 - error message");
}

{ my $diag_file = "_$$.out";
SKIP: {
$^O =~ m/MSWin/i and skip "Windows does not support STDERR redirection as used in these tests", 23;

my $diag_file = "_$$.out";
open EH, ">&STDERR";
open STDERR, ">$diag_file";
ok ($csv->_cache_diag, "Cache debugging output");
Expand Down

0 comments on commit 9787629

Please sign in to comment.