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