~ubuntu-branches/ubuntu/vivid/libwiki-toolkit-formatter-usemod-perl/vivid

« back to all changes in this revision

Viewing changes to t/twf-bug.t

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2006-10-20 11:36:52 UTC
  • Revision ID: james.westby@ubuntu.com-20061020113652-9rs9i0ii0if52qff
Tags: upstream-0.20
ImportĀ upstreamĀ versionĀ 0.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use Test::More tests => 1;
 
3
use Wiki::Toolkit::Formatter::UseMod;
 
4
 
 
5
my $formatter = Wiki::Toolkit::Formatter::UseMod->new;
 
6
 
 
7
my $foo = "x";
 
8
$foo .= "" if $foo =~ /x/;
 
9
 
 
10
my $html = $formatter->format("test");
 
11
is( $html, "<p>test</p>\n", "Text::WikiFormat bug avoided" );