bump version
[gitmo/Moo.git] / xt / moo-roles-into-moose-class-attr-override-with-autoclean.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use FindBin qw/ $Bin /;
5 use lib "$Bin/lib";
6
7 {
8     package Bax;
9     use Moose;
10
11     with qw/
12         ExampleMooRoleWithAttribute
13     /;
14
15
16     has '+output_to' => (
17         required => 1,
18     );
19 }
20
21 ok 1;
22 done_testing;
23