Author: bernhard
Date: Sat Nov 29 04:33:30 2008
New Revision: 33337
Modified:
trunk/languages/pipp/t/php/functions.t
Log:
[Pipp] add Perl6 equivalent of an TODO test case
Modified: trunk/languages/pipp/t/php/functions.t
==============================================================================
--- trunk/languages/pipp/t/php/functions.t (original)
+++ trunk/languages/pipp/t/php/functions.t Sat Nov 29 04:33:30 2008
@@ -169,6 +169,17 @@
12 asdf -1
OUT
+=for perl6
+
+sub return_100( ) {
+ return 100;
+}
+
+my $a = return_100();
+print "$a\n";
+
+=cut
+
language_output_is( 'Pipp', <<'CODE', <<'OUT', 'return an integer', todo =>
'not implemented yet' );
<?php