B::Hooks::OP::Check::Install::Files is not indexed
[p5sagit/Devel-Declare.git] / t / sugar.t
CommitLineData
8343b16e 1use strict;
2use warnings;
86c3de80 3use Devel::Declare;
4
5BEGIN {
6
7 Devel::Declare->install_declarator(
8 'DeclareTest', 'method', DECLARE_PACKAGE | DECLARE_PROTO,
9 sub {
10 my ($name, $proto) = @_;
8eb4a3c5 11#no warnings 'uninitialized';
12#warn "NP: ".join(', ', @_)."\n";
86c3de80 13 return 'my $self = shift;' unless defined $proto && $proto ne '@_';
14 return 'my ($self'.(length $proto ? ", ${proto}" : "").') = @_;';
15 },
16 sub {
003ac394 17 my ($name, $proto, $sub, @rest) = @_;
8eb4a3c5 18#no warnings 'uninitialized';
19#warn "NPS: ".join(', ', @_)."\n";
86c3de80 20 if (defined $name && length $name) {
21 unless ($name =~ /::/) {
22 $name = "DeclareTest::${name}";
23 }
24 no strict 'refs';
25 *{$name} = $sub;
26 }
003ac394 27 return wantarray ? ($sub, @rest) : $sub;
86c3de80 28 }
29 );
30
31}
32
003ac394 33my ($test_method1, $test_method2, @test_list);
86c3de80 34
35{
36 package DeclareTest;
37
38 method new {
39 my $class = ref $self || $self;
40 return bless({ @_ }, $class);
41 };
42
43 method foo ($foo) {
44 return (ref $self).': Foo: '.$foo;
45 };
46
8eb4a3c5 47 method upgrade(){ # no spaces to make case pathological
86c3de80 48 bless($self, 'DeclareTest2');
49 };
50
51 method DeclareTest2::bar () {
52 return 'DeclareTest2: bar';
53 };
54
c5534496 55 $test_method1 = method {
86c3de80 56 return join(', ', $self->{attr}, $_[1]);
57 };
58
59 $test_method2 = method ($what) {
60 return join(', ', ref $self, $what);
61 };
62
bedac9ff 63 method main () { return "main"; };
64
c5912dc7 65 #@test_list = method { 1 }, sub { 2 }, method () { 3 }, sub { 4 };
003ac394 66
86c3de80 67}
68
faaf0544 69use Test::More 0.88;
86c3de80 70
71my $o = DeclareTest->new(attr => "value");
72
73isa_ok($o, 'DeclareTest');
74
75is($o->{attr}, 'value', '@_ args ok');
76
77is($o->foo('yay'), 'DeclareTest: Foo: yay', 'method with argument ok');
78
bedac9ff 79is($o->main, 'main', 'declaration of package named method ok');
80
86c3de80 81$o->upgrade;
82
83isa_ok($o, 'DeclareTest2');
84
85is($o->bar, 'DeclareTest2: bar', 'absolute method declaration ok');
86
87is($o->$test_method1('no', 'yes'), 'value, yes', 'anon method with @_ ok');
88
89is($o->$test_method2('this'), 'DeclareTest2, this', 'anon method with proto ok');
003ac394 90
8eb4a3c5 91#warn map { $_->() } @test_list;
b52072dc 92
93done_testing;