From 23f7029e0cc853418169045457aefdc71035e90c Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 1 Apr 2007 19:19:14 +0000 Subject: [PATCH] More small fixes to the Markdown unit test --- docs/UnitTest/MarkdownTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/UnitTest/MarkdownTest.php b/docs/UnitTest/MarkdownTest.php index 26bd968..f4f4b4a 100644 --- a/docs/UnitTest/MarkdownTest.php +++ b/docs/UnitTest/MarkdownTest.php @@ -20,15 +20,15 @@ class MarkdownTest extends UnitTestCase public function testAutoUrlEscape() { - $this->assertEqual('http://images.google.com/images?num=30&q=larry+bird', BSMarkdown::Parse('http://images.google.com/images?num=30&q=larry+bird')); + $this->assertEqual('

http://images.google.com/images?num=30&q=larry+bird

', BSMarkdown::Parse('http://images.google.com/images?num=30&q=larry+bird')); } public function testSingleEntityEscape() { - $this->assertEqual('©', BSMarkdown::Parse('©')); - $this->assertEqual('AT&T', BSMarkdown::Parse('AT&T')); + $this->assertEqual('

©

', BSMarkdown::Parse('©')); + $this->assertEqual('

AT&T

', BSMarkdown::Parse('AT&T')); $this->assertEqual('

Test

', BSMarkdown::Parse('

Test

')); - $this->assertEqual('4 < 5', BSMarkdown::Parse('4 < 5')); + $this->assertEqual('

4 < 5

', BSMarkdown::Parse('4 < 5')); } public function testParagraphs() -- 2.22.5