summaryrefslogtreecommitdiffstats
path: root/t/01history.t
blob: f3db55c6492a0b789ee3b925d5ca19183f8a9692 (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
#!/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 => 5 * 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");
    SKIP: {
        my $arch = $dconf->getvalue(undef, "arch");
        skip "undefined arch for in case", 2 unless(defined($arch));
    like($arch, '/.+/', "can get arch");
    like($dconf->getvalue(undef, "platform"), "/^$arch" . '-(mandriva|mandrake)-linux-gnu$/', "can get arch");
    }
}