diff options
author | Olivier Thauvin <nanardon@mandriva.org> | 2007-07-02 13:10:35 +0000 |
---|---|---|
committer | Olivier Thauvin <nanardon@mandriva.org> | 2007-07-02 13:10:35 +0000 |
commit | 5a66423d2da34baf0896cf7781868989464b548f (patch) | |
tree | 8eac9949b8a6fc1149af1d2d5103099812cf73bc /t/01history.t | |
parent | 0dcaef65a3809b25a0d40f9e8c1a4143767818da (diff) | |
download | perl-MDV-Distribconf-5a66423d2da34baf0896cf7781868989464b548f.tar perl-MDV-Distribconf-5a66423d2da34baf0896cf7781868989464b548f.tar.gz perl-MDV-Distribconf-5a66423d2da34baf0896cf7781868989464b548f.tar.bz2 perl-MDV-Distribconf-5a66423d2da34baf0896cf7781868989464b548f.tar.xz perl-MDV-Distribconf-5a66423d2da34baf0896cf7781868989464b548f.zip |
- resync lost file after svn crash
Diffstat (limited to 't/01history.t')
-rw-r--r-- | t/01history.t | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/t/01history.t b/t/01history.t new file mode 100644 index 0000000..2c8b11d --- /dev/null +++ b/t/01history.t @@ -0,0 +1,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"); +} |