1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
#!/usr/bin/perl
# Replication test for https://rt.cpan.org/Ticket/Display.html?id=57417
# When ->proceed is used in list context, the return list is
# accidentally stuffed inside a second ARRAY reference on return.
use strict;
BEGIN {
$| = 1;
$^W = 1;
}
use Test::More tests => 12;
use Test::NoWarnings;
use Aspect;
around {
shift->proceed;
} call qr/^Foo::*/
| call qr/^Bar::*/;
sub get_foo {
return Foo->new;
}
# Raw constructors
SCOPE: {
my $foo = Foo->new;
my $bar = Bar->new;
isa_ok( $foo, 'Foo' );
isa_ok( $bar, 'Bar' );
}
# Scalar context recursive call
SCOPE: {
my $bar = Bar->new;
my $foo = &get_foo;
isa_ok( $bar, 'Bar' );
isa_ok( $foo, 'Foo' );
$bar->foo_hello($foo);
}
# List context recursive call
SCOPE: {
my $bar = Bar->new;
my @foo = &get_foo;
isa_ok( $bar, 'Bar' );
is( scalar(@foo), 1, 'Got 1 element' );
isa_ok( $foo[0], 'Foo' );
$bar->foo_hello(@foo);
}
# Void context recursive call
SCOPE: {
my $bar = Bar->new;
isa_ok( $bar, 'Bar' );
$bar->foo_hello(&get_foo);
}
######################################################################
# Support Packages
package Foo;
sub new {
return bless {}, shift;
}
sub hello {
Test::More::pass( 'Got to ->hello method' );
}
package Bar;
sub new {
return bless {}, shift;
}
sub foo_hello {
my $self = shift;
my $foo = shift;
$foo->hello;
}
|