Skip to content

Instantly share code, notes, and snippets.

@davel
Created January 24, 2012 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davel/1671552 to your computer and use it in GitHub Desktop.
Save davel/1671552 to your computer and use it in GitHub Desktop.
#!/usr/bin/env perl
use strict;
use warnings;
use Text::CSV_XS;
use Text::CSV_PP;
use Test::More;
foreach my $implementation ('Text::CSV_PP', 'Text::CSV_XS') {
diag "Using $implementation";
my $csv = $implementation->new({ binary => 1 });
my $ax = chr(0xfa);
my $bx = "foo";
# We set the UTF-8 flag on a string with no funny characters
utf8::upgrade($bx);
is($bx, "foo", "no funny characters in the string");
ok(utf8::valid($ax), "first string correct in Perl");
ok(utf8::valid($bx), "second string correct in Perl");
$csv->combine($ax, $bx) or die $csv->error_diag;
my $foo = $csv->string();
ok(utf8::valid($foo), "is combined string correct inside Perl?");
is($foo, qq{\xfa,foo}, "expected result");
}
done_testing();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment