Regenerate test files
[gitmo/Mouse.git] / t / 050_metaclasses / 002_custom_attr_meta_as_role.t
CommitLineData
4060c871 1#!/usr/bin/perl
fde8e43f 2# This is automatically generated by author/import-moose-test.pl.
3# DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4use t::lib::MooseCompat;
4060c871 5
6use strict;
7use warnings;
8
fde8e43f 9use Test::More;
4060c871 10use Test::Exception;
11
4060c871 12lives_ok {
fde8e43f 13 package MooseX::Attribute::Test;
4060c871 14 use Mouse::Role;
15} 'creating custom attribute "metarole" is okay';
16
17lives_ok {
18 package Mouse::Meta::Attribute::Custom::Test;
19 use Mouse;
20
21 extends 'Mouse::Meta::Attribute';
fde8e43f 22 with 'MooseX::Attribute::Test';
4060c871 23} 'custom attribute metaclass extending role is okay';
fde8e43f 24
25done_testing;