File: traits.t

package info (click to toggle)
libmoosex-method-signatures-perl 0.49-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 496 kB
  • ctags: 35
  • sloc: perl: 969; makefile: 8
file content (34 lines) | stat: -rw-r--r-- 1,260 bytes parent folder | download | duplicates (3)
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
use strict;
use warnings;
use Test::More tests => 12;

use lib 't/lib';

use TestClassTrait;

use Moose::Util qw(does_role);

my $c = TestClassTrait->new;

my $method = $c->meta->get_method('method_with_trait');
isa_ok($method, 'MooseX::Method::Signatures::Meta::Method');

ok(does_role($method, 'MXMSMoody'), 'method has MXMSMoody trait');
cmp_ok($method->mood, 'eq', 'happy', 'method is happy');

my $tt_method = $c->meta->get_method('method_with_two_traits');
isa_ok($tt_method, 'MooseX::Method::Signatures::Meta::Method');

ok(does_role($tt_method, 'MXMSMoody'), 'method has MXMSMoody trait');
ok(does_role($tt_method, 'MXMSLabeled'), 'method has MXMSLabeled trait');

my $twois_method = $c->meta->get_method('method_with_two_is_traits');
ok(does_role($twois_method, 'MXMSMoody'), 'two is method has MXMSMoody trait');
ok(does_role($twois_method, 'MXMSLabeled'), 'two is method has MXMSLabeled trait');

my $param_method = $c->meta->get_method('method_with_two_is_param_traits');
ok(does_role($twois_method, 'MXMSMoody'), 'param method has MXMSMoody trait');
ok(does_role($twois_method, 'MXMSLabeled'), 'param method has MXMSLabeled trait');

ok($param_method->has_label, 'method has label');
cmp_ok($param_method->label, 'eq', 'happy', 'label is happy');