Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Test for p5 string conversion - partly failing
  • Loading branch information
pmurias committed Oct 1, 2011
1 parent c43c708 commit 50e0320
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions t/p5/strings.t
@@ -0,0 +1,5 @@
use Test;
is(eval("'Yet Another Perl Hacker'",:lang<perl5>),"Yet Another Perl Hacker");
is(eval('"Yet Ano\0ther P\0erl Hacker"',:lang<perl5>),"Yet Ano\0ther P\0erl Hacker","Null Bytes in the middle of a converted string");
is(eval('"ąęóśćż"',:lang<perl5>),"ąęóśćż","utf8 in literals");
done;

0 comments on commit 50e0320

Please sign in to comment.