summaryrefslogtreecommitdiffstats
path: root/t/01history.t
blob: 2c8b11de79e4764251ec68ccc171be7d8cdf8a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/perl

# $Id: 01distribconf.t 56934 2006-08-21 10:16:29Z nanardon $

use strict;
use Test::More;
use MDV::Distribconf;

my @testdpath = glob('testdata/history/*/*/*');

plan tests => 3 * scalar(@testdpath);

foreach my $path (@testdpath) {
    ok(
        my $dconf = MDV::Distribconf->new($path),
        "Can get new MDV::Distribconf"
    );
    ok($dconf->load(), "can load $path");
    ok($dconf->listmedia(), "can list media");
}