Regenerate test files
[gitmo/Mouse.git] / t / 020_attributes / 013_attr_dereference_test.t
CommitLineData
4060c871 1#!/usr/bin/perl
fde8e43f 2# This is automatically generated by author/import-moose-test.pl.
3# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4use t::lib::MooseCompat;
4060c871 5
6use strict;
7use warnings;
8
fde8e43f 9use Test::More;
4060c871 10use Test::Exception;
11
12
4060c871 13{
14 package Customer;
15 use Mouse;
16
17 package Firm;
18 use Mouse;
19 use Mouse::Util::TypeConstraints;
20
21 ::lives_ok {
22 has 'customers' => (
23 is => 'ro',
24 isa => subtype('ArrayRef' => where {
25 (blessed($_) && $_->isa('Customer') || return) for @$_; 1 }),
26 auto_deref => 1,
27 );
28 } '... successfully created attr';
29}
30
31{
32 my $customer = Customer->new;
33 isa_ok($customer, 'Customer');
34
35 my $firm = Firm->new(customers => [ $customer ]);
36 isa_ok($firm, 'Firm');
37
38 can_ok($firm, 'customers');
39
40 is_deeply(
41 [ $firm->customers ],
42 [ $customer ],
43 '... got the right dereferenced value'
44 );
45}
46
47{
48 my $firm = Firm->new();
49 isa_ok($firm, 'Firm');
50
51 can_ok($firm, 'customers');
52
53 is_deeply(
54 [ $firm->customers ],
55 [],
56 '... got the right dereferenced value'
57 );
58}
59
60{
61 package AutoDeref;
62 use Mouse;
63
64 has 'bar' => (
65 is => 'rw',
66 isa => 'ArrayRef[Int]',
67 auto_deref => 1,
68 );
69}
70
71{
72 my $autoderef = AutoDeref->new;
73
74 dies_ok {
75 $autoderef->bar(1, 2, 3);
76 } '... its auto-de-ref-ing, not auto-en-ref-ing';
77
78 lives_ok {
79 $autoderef->bar([ 1, 2, 3 ])
80 } '... set the results of bar correctly';
81
82 is_deeply [ $autoderef->bar ], [ 1, 2, 3 ], '... auto-dereffed correctly';
83}
fde8e43f 84
85done_testing;