summaryrefslogtreecommitdiffstats
path: root/t/cfg-option.t
blob: 23d74134507a272489715e8fc9de2ddd4a7d608d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/perl
# config file tester.

#########################

use strict;
use warnings;

use lib q(t);
use Testhelper;

my @tests;
push @tests,
  {
    'doc'            => 'space in option value',
    'po4a.conf'      => 'cfg/space-in-option-value/po4a.conf',
    'modes'          => 'dstdir',
    'expected_files' => 'man.pot man.ja.po man.ja.1'
  };

run_all_tests(@tests);

0;