File: constructor.t

package info (click to toggle)
libmoosex-undeftolerant-perl 0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 232 kB
  • sloc: perl: 507; makefile: 11
file content (15 lines) | stat: -rw-r--r-- 258 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use warnings;

use Test::More;
use Test::Moose;

use lib 't/lib';
use ConstructorTests;

with_immutable { ConstructorTests::do_tests() } qw(Foo Bar);

note 'Ran ', Test::More->builder->current_test, ' tests - should have run 56';

done_testing;