]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Test system and exec
authorVincent Pit <vince@profvince.com>
Sat, 11 Oct 2008 11:04:51 +0000 (13:04 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 11 Oct 2008 11:04:51 +0000 (13:04 +0200)
t/10-good.t

index 0132f45ec4ac6ea96569815a5c843706ac071c22..964cafe4fd66738ef68dc993267007d209974ce6 100644 (file)
@@ -9,9 +9,9 @@ package main;
 use strict;
 use warnings;
 
-use Test::More tests => 36 * 4;
+use Test::More tests => 40 * 4;
 
-my ($obj, $pkg, $cb, $x);
+my ($obj, $pkg, $cb, $x, @a);
 sub meh;
 
 {
@@ -144,3 +144,11 @@ $obj = "apple ${\(new Hlagh)} pear"
 $obj = "apple @{[new Hlagh]} pear"
 ####
 s/dongs/new Hlagh/e;
+####
+exec $x $x, @a;
+####
+exec { $a[0] } @a;
+####
+system $x $x, @a;
+####
+system { $a[0] } @a;