summaryrefslogtreecommitdiffstats
path: root/t/101-parameterized.t
blob: 53f6d4eda97d19d4afdefff02bde83576add1bc0 (plain) (blame)
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
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More tests => 1;
use Test::Deep;

package Foo;
use Moose;
with 'MooseX::Role::Matcher' => { default_match => 'a' };

has [qw/a b c/] => (
    is       => 'ro',
    isa      => 'Str',
    required => 1,
);

package FooCollection;
use Moose;

has foos => (
    is      => 'rw',
    isa     => 'ArrayRef[Foo]',
    default => sub { [] },
);

sub first_match {
    my $self = shift;
    Foo->first_match($self->foos, @_);
}

sub any_match {
    my $self = shift;
    Foo->any_match($self->foos, @_);
}

sub all_match {
    my $self = shift;
    Foo->all_match($self->foos, @_);
}

sub grep_matches {
    my $self = shift;
    Foo->grep_matches($self->foos, @_);
}

package main;
my $foos = FooCollection->new;
my $foo1 = Foo->new(a => 'foo',  b => 'bar', c => 'baz');
my $foo2 = Foo->new(a => '',     b => '3',   c => 'foobar');
my $foo3 = Foo->new(a => 'blah', b => 'abc', c => 'foo');
push @{ $foos->foos }, $foo1;
push @{ $foos->foos }, $foo2;
push @{ $foos->foos }, $foo3;
is($foos->first_match(sub { length(shift) < 3 }), $foo2,
   'default parameter is passed correctly');