summaryrefslogtreecommitdiffstats
path: root/t/01compile.t
blob: b9a1a208d441f25207628ca34573055eda92ba78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
# vim:et:ai:ts=4:sts=4:sw=4

use strict;
use warnings;
use Test::More tests => 26;

for my $module (glob("urpm/*.pm")) {
    $module =~ s,/,::,g;
    $module =~ s,\.pm$,,;
    use_ok $module;
}