[Po4a-commits] "po4a/t 26-ini.t,NONE,1.1"
Nicolas FRANCOIS
nekral-guest at alioth.debian.org
Wed Aug 23 19:58:58 UTC 2006
Update of /cvsroot/po4a/po4a/t
In directory haydn:/tmp/cvs-serv18994/t
Added Files:
26-ini.t
Log Message:
Add a test to the testsuite for the ini module.
--- NEW FILE: 26-ini.t ---
#! /usr/bin/perl
# Xhtml module tester.
#########################
use strict;
use warnings;
my @tests;
mkdir "t/tmp" unless -e "t/tmp" or die "Can't create test directory t/tmp\n";
my $diff_po_flags = " -I '^# SOME' -I '^# Test' ".
"-I '^\"POT-Creation-Date: ' -I '^\"Content-Transfer-Encoding:'";
push @tests, {
'run' => 'perl ../../po4a-normalize -f ini ../data-26/test1.ini',
'test'=> "diff -u $diff_po_flags ../data-26/test1.po po4a-normalize.po".
"&& diff -u $diff_po_flags ../data-26/test1.ini po4a-normalize.output",
'doc' => 'normalisation test',
};
use Test::More tests => 2;
chdir "t/tmp" || die "Can't chdir to my test directory";
foreach my $test ( @tests ) {
my ($val,$name);
my $cmd=$test->{'run'};
$val=system($cmd);
$name=$test->{'doc'}.' runs';
ok($val == 0,$name);
diag($test->{'run'}) unless ($val == 0);
SKIP: {
skip ("Command didn't run, can't test the validity of its return",1)
if $val;
$val=system($test->{'test'});
$name=$test->{'doc'}.' returns what is expected';
ok($val == 0,$name);
unless ($val == 0) {
diag ("Failed (retval=$val) on:");
diag ($test->{'test'});
diag ("Was created with:");
diag ($test->{'run'});
}
}
}
chdir "../.." || die "Can't chdir back to my root";
0;
More information about the Po4a-commits
mailing list