]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Test method call inside method call
authorVincent Pit <vince@profvince.com>
Sat, 30 Aug 2008 18:53:30 +0000 (20:53 +0200)
committerVincent Pit <vince@profvince.com>
Sat, 30 Aug 2008 18:53:30 +0000 (20:53 +0200)
t/10-good.t
t/20-bad.t

index 14f96d2e2decd2f66b164b6f3b12b6e8385da615..6510bea46724c99c93b3b637ac1bc301e5bafbdb 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 32 * 2;
+use Test::More tests => 33 * 2;
 
 my ($obj, $pkg, $cb, $x);
 sub meh;
@@ -120,3 +120,5 @@ meh $x, 1 , 2;
 print STDOUT "bananananananana\n";
 ####
 print $x "oh hai\n";
+####
+$x->foo($pkg->$cb)
index 05efb509b5698f88cd434b0a6b28e5437b8f6d0d..ce17983eaaf1c7bc71818828a47b9220c19c2c5d 100644 (file)
@@ -3,9 +3,9 @@
 use strict;
 use warnings;
 
-use Test::More tests => 28 * 2;
+use Test::More tests => 30 * 2;
 
-my ($obj, $pkg, $cb, $x);
+my ($obj, $x);
 
 {
  local $/ = "####\n";
@@ -95,3 +95,7 @@ $obj = HlaghHlagh Hlagh; # HlaghHlagh Hlagh
 $obj = new newnew;
 ####
 $obj = new newnew; # new newnew
+####
+new Hlagh (meh $x)
+####
+Hlagh->new(meh $x)