1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
use strict;
use warnings;
# this test was generated with Dist::Zilla::Plugin::Test::NoTabs 0.15
use Test::More 0.88;
use Test::NoTabs;
my @files = (
'lib/Params/ValidationCompiler.pm',
'lib/Params/ValidationCompiler/Compiler.pm',
'lib/Params/ValidationCompiler/Exceptions.pm',
't/00-report-prereqs.dd',
't/00-report-prereqs.t',
't/default.t',
't/exceptions.t',
't/moose.t',
't/name-fails.t',
't/name.t',
't/named/args-check.t',
't/named/const-hash.t',
't/named/locked-hash.t',
't/named/required.t',
't/named/return-object.t',
't/named/slurpy.t',
't/pairs-to-value-list.t',
't/positional/default.t',
't/positional/required.t',
't/positional/slurpy.t',
't/self-check.t',
't/source_for.t',
't/specio.t',
't/type-tiny.t'
);
notabs_ok($_) foreach @files;
done_testing;
|