apply default values when applying role to object
[gitmo/Moo.git] / t / global_underscore.t
CommitLineData
141b507a 1use strict;
2use warnings;
3use Test::More;
4use lib qw(t/lib);
5
6use_ok('UnderscoreClass');
7
8is(
9 UnderscoreClass->c1,
10 'c1',
11);
12
13is(
14 UnderscoreClass->r1,
15 'r1',
16);
17
18is(
19 ClobberUnderscore::h1(),
20 'h1',
21);
22
23done_testing;