Reorganize t/050_metaclasses/
[gitmo/Mouse.git] / t / 100_bugs / 013_lazybuild_required_undef.t
CommitLineData
9864f0e4 1use strict;
2use Test::More tests => 4;
3
4c98ebb0 4package Foo;
5use Mouse;
6
7## Problem:
8## lazy_build sets required => 1
9## required does not permit setting to undef
10
11## Possible solutions:
12#### remove required => 1
13#### check the attr to see if it accepts Undef (Maybe[], | Undef)
14#### or, make required accept undef and use a predicate test
15
16
9864f0e4 17has 'foo' => ( isa => 'Int | Undef', is => 'rw', coerce => 1, lazy_build => 1 );
18has 'bar' => ( isa => 'Int | Undef', is => 'rw', coerce => 1 );
4c98ebb0 19
20sub _build_foo { undef }
21
22package main;
4c98ebb0 23
24ok ( !defined(Foo->new->bar), 'NonLazyBuild: Undef default' );
25ok ( !defined(Foo->new->bar(undef)), 'NonLazyBuild: Undef explicit' );
26
27ok ( !defined(Foo->new->foo), 'LazyBuild: Undef default/lazy_build' );
28
29## This test fails at the time of creation.
30ok ( !defined(Foo->new->foo(undef)), 'LazyBuild: Undef explicit' );