File: aggregate.t

package info (click to toggle)
libhtml-formfu-perl 0.09007-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,184 kB
  • sloc: perl: 13,186; makefile: 9; sql: 5
file content (20 lines) | stat: -rw-r--r-- 594 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use Test::More;

eval "require Test::Aggregate::Nested";
if($^O eq 'MSWin32' || $@) {
    plan skip_all => 'Test::Aggregate::Nested an non-Win32 OS required';
    exit;
}

my @classes = qw(
  bugs constraints deflators elements examples filters form i18n
  inflators internals model multiform multiform-misc multiform-nested-name
  multiform-no-combine multiform_hidden_name nested output_processors plugins
  repeatable templates transformers utils load_config);

Test::Aggregate::Nested->new( {
    dirs    => [map { "t/$_" } @classes],
    # verbose => 1,
} )->run;