blob: 9ad0a0c838307b8ceb5c4c5b5338ad534fa64711 (
plain)
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
|
#!/usr/bin/perl
# Test that all profiles are loadable...
use strict;
use warnings;
use Const::Fast;
use Test::More;
use Test::Lintian;
const my $DOT => q{.};
$ENV{'LINTIAN_BASE'} //= $DOT;
# We could use a plan, but then we had to update every time we added
# or removed a profile...
test_load_profiles($ENV{'LINTIAN_BASE'}, $ENV{'LINTIAN_BASE'});
done_testing;
# Local Variables:
# indent-tabs-mode: nil
# cperl-indent-level: 4
# End:
# vim: syntax=perl sw=4 sts=4 sr et
|