summaryrefslogtreecommitdiffstats
path: root/t/cfg-option.t
diff options
context:
space:
mode:
Diffstat (limited to 't/cfg-option.t')
-rw-r--r--t/cfg-option.t23
1 files changed, 23 insertions, 0 deletions
diff --git a/t/cfg-option.t b/t/cfg-option.t
new file mode 100644
index 0000000..23d7413
--- /dev/null
+++ b/t/cfg-option.t
@@ -0,0 +1,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;