Skip to content

Commit

Permalink
[TODO FUDGE] fancy quotes work inside qww<> like regular quotes
Browse files Browse the repository at this point in the history
RT#128304
  • Loading branch information
zoffixznet committed Jul 12, 2016
1 parent 44fc047 commit b7d8279
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion S02-literals/quoting.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 184;
plan 185;

my $foo = "FOO";
my $bar = "BAR";
Expand Down Expand Up @@ -649,4 +649,13 @@ ok qq:to/EOF/ ~~ /\t/, '\t in heredoc does not turn into spaces';
}
}
# RT #128304
{
#?rakudo todo 'RT 128304'
is-deeply qww<a a ‘b b’ ‚b b’ ’b b‘ ’b b‘ ’b b’ ‚b b‘ ‚b b’ “b b” „b b”
”b b“ ”b b“ ”b b” „b b“ „b b” 「b b」 「b b」>,
('a', 'a', |('b b' xx 16)),
'fancy quotes in qww work just like regular quotes';
}
# vim: ft=perl6

0 comments on commit b7d8279

Please sign in to comment.