]> sipb.mit.edu Git - ikiwiki.git/commitdiff
failing test case
authorAntoine Beaupré <anarcat@koumbit.org>
Sat, 7 Sep 2013 22:29:34 +0000 (18:29 -0400)
committerAntoine Beaupré <anarcat@koumbit.org>
Fri, 29 Nov 2013 06:09:04 +0000 (01:09 -0500)
t/syslog.t [new file with mode: 0644]

diff --git a/t/syslog.t b/t/syslog.t
new file mode 100644 (file)
index 0000000..28272e2
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/perl
+use warnings;
+use strict;
+use Test::More tests => 3;
+use utf8;
+
+BEGIN { use_ok("IkiWiki"); }
+
+$IkiWiki::config{verbose} = 1;
+$IkiWiki::config{syslog} = 1;
+$IkiWiki::config{wikiname} = 'ascii';
+is(debug('test'), '');
+$IkiWiki::config{wikiname} = 'not ⒶSCII';
+is(debug('test'), '');