This is an automatically generated mail to inform you that tests are now 
available in t/spec/S02-literals/string-interpolation.t

commit 926a7abb36dcbcf22980188e18cb9e230eca409b
Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date:   Sun Oct 11 22:25:52 2009 +0000

    [t/spec] Test for RT #65538
    
    git-svn-id: http://svn.pugscode.org/p...@28765 
c213334d-75ef-0310-aa23-eaa082d1ae64

diff --git a/t/spec/S02-literals/string-interpolation.t 
b/t/spec/S02-literals/string-interpolation.t
index 5b8de48..e6f0ebf 100644
--- a/t/spec/S02-literals/string-interpolation.t
+++ b/t/spec/S02-literals/string-interpolation.t
@@ -1,8 +1,6 @@
 use v6;
-
 use Test;
-
-plan 8;
+plan *;
 
 # L<S02/Literals/"A bare closure also interpolates in double-quotish context.">
 
@@ -28,4 +26,19 @@ plan 8;
     ok "{3}" ~~ Str, '"{3}" results in a Str';
 }
 
+my $rt65538_in = qq[line { (1,2,3).min }
+line 2
+line { (1,2,3).max } etc
+line 4
+];
+my $rt65538_out = qq[line 1
+line 2
+line 3 etc
+line 4
+];
+#?rakudo todo 'RT 65538'
+is $rt65538_in, $rt65538_out, 'interpolation does not trim newlines';
+
+done_testing;
+
 # vim: ft=perl6

Reply via email to