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

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

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