File: constructor.t

package info (click to toggle)
libmoosex-undeftolerant-perl 0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 252 kB
  • ctags: 22
  • sloc: perl: 487; makefile: 13
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;