File: subname.t

package info (click to toggle)
libmoose-perl 2.2207-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,416 kB
  • sloc: perl: 21,345; ansic: 291; makefile: 10
file content (42 lines) | stat: -rw-r--r-- 849 bytes parent folder | download | duplicates (8)
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
use strict;
use warnings;

use Test::More;

use Class::MOP;

{

    package Origin;
    sub bar { ( caller(0) )[3] }

    package Foo;
}

my $Foo = Class::MOP::Class->initialize('Foo');

$Foo->add_method( foo => sub { ( caller(0) )[3] } );

is_deeply(
    [ Class::MOP::get_code_info( $Foo->get_method('foo')->body ) ],
    [ "Foo", "foo" ],
    "subname applied to anonymous method",
);

is( Foo->foo, "Foo::foo", "caller() aggrees" );

$Foo->add_method( bar => \&Origin::bar );

is( Origin->bar, "Origin::bar", "normal caller() operation in unrelated class" );

is_deeply(
    [ Class::MOP::get_code_info( $Foo->get_method('foo')->body ) ],
    [ "Foo", "foo" ],
    "subname not applied if a name already exists",
);

is( Foo->bar, "Origin::bar", "caller aggrees" );

is( Origin->bar, "Origin::bar", "unrelated class untouched" );

done_testing;