projects
/
gitmo/Moo.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
no automatic travis testing for wip/blocked branches
[gitmo/Moo.git]
/
t
/
undef-bug.t
Commit
Line
Data
0689a5ab
1
use Test::More tests => 1;
2
3
package Foo;
4
use Moo;
5
6
has this => (is => 'ro');
7
8
package main;
9
10
my $foo = Foo->new;
11
12
ok not(exists($foo->{this})),
13
"new objects don't have undef attributes";