no automatic travis testing for wip/blocked branches
[gitmo/Moo.git] / xt / moo-roles-into-moose-class-attr-override-with-autoclean.t
CommitLineData
087c79b5 1use strict;
2use warnings;
3use Test::More;
4use FindBin qw/ $Bin /;
5use 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
21ok 1;
22done_testing;
23