summaryrefslogtreecommitdiffstats
path: root/t/01compile.t
blob: 366848aab8f44f07beedaf8b2b6febf295b074c7 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/perl

use strict;
use Test::More tests => 10;

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