| 12345678910111213141516171819202122232425262728293031323334353637 | 
							- <?php
 
- /**
 
-  * @copyright Copyright (c) 2014 Carsten Brandt
 
-  * @license https://github.com/cebe/markdown/blob/master/LICENSE
 
-  * @link https://github.com/cebe/markdown#readme
 
-  */
 
- namespace cebe\markdown\tests;
 
- use cebe\markdown\Markdown;
 
- /**
 
-  * Test case for traditional markdown.
 
-  *
 
-  * @author Carsten Brandt <mail@cebe.cc>
 
-  * @group default
 
-  */
 
- class MarkdownTest extends BaseMarkdownTest
 
- {
 
- 	public function createMarkdown()
 
- 	{
 
- 		return new Markdown();
 
- 	}
 
- 	public function getDataPaths()
 
- 	{
 
- 		return [
 
- 			'markdown-data' => __DIR__ . '/markdown-data',
 
- 		];
 
- 	}
 
- 	public function testEdgeCases()
 
- 	{
 
- 		$this->assertEquals("<p>&</p>\n", $this->createMarkdown()->parse('&'));
 
- 		$this->assertEquals("<p><</p>\n", $this->createMarkdown()->parse('<'));
 
- 	}
 
- }
 
 
  |