#!perl use strict; use warnings; use Test::More tests => 2; use Text::WikiFormat; my $wikitext =< 'rootdir/wiki.pl?page=', ); my $htmltext = Text::WikiFormat::format($wikitext, {}, \%opts ); like( $htmltext, qr!!m, 'should create links from StudlyCaps if implicit_links is left alone' ); $opts{implicit_links} = 0; $htmltext = Text::WikiFormat::format($wikitext, {}, \%opts ); unlike( $htmltext, qr!!m, '... but not if implicit_links set to 0' );