Remove references to jules git repo
[gitmo/Moose.git] / t / 030_roles / 031_roles_applied_in_create.t
CommitLineData
87259f30 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
e33d8fa8 6use Test::More tests => 1;
87259f30 7use Test::Exception;
8use Moose::Meta::Class;
9use Moose::Util;
10
11use lib 't/lib', 'lib';
12
87259f30 13
f24d409f 14# Note that this test passed (pre svn #5543) if we inlined the role
15# definitions in this file, as it was very timing sensitive.
e33d8fa8 16lives_ok(
17 sub {
18 my $builder_meta = Moose::Meta::Class->create(
19 'YATTA' => (
20 superclass => 'Moose::Meta::Class',
21 roles => [qw( Role::Interface Role::Child )],
22 )
23 );
24 },
25 'Create a new class with several roles'
87259f30 26);
27