with_immutable needs to test both mutable and immutable conditions
[gitmo/MooseX-UndefTolerant.git] / t / constructor.t
CommitLineData
37acc770 1use strict;
2use warnings;
3
0dd9c65b 4use Test::More;
9ee73670 5use Test::Moose;
5447ee45 6
37acc770 7use lib 't/lib';
8use ConstructorTests;
3991a5d2 9
37acc770 10with_immutable { ConstructorTests::do_tests() } qw(Foo Bar);
5447ee45 11
9ee73670 12note 'Ran ', Test::More->builder->current_test, ' tests - should have run 56';
5cc8d5b3 13
8055a641 14done_testing;
5cc8d5b3 15