KnpMarkdownBundle/Tests/PresetTest.php
Joseph Bielawski 3c541b580b Removed hard dependency on MarkdownParser code, now uses dflydev/markdown library
Refactored way how parsers are initialized, and allow to select parser while rendering
Interface `MarkdownParserInterface` method name was changed from `#transform($text)` to `#transformMarkdown($text)`
2012-10-15 17:28:35 +02:00

55 lines
1.2 KiB
PHP

<?php
namespace Knp\Bundle\MarkdownBundle\Tests;
use Knp\Bundle\MarkdownBundle\Parser\Preset as Preset;
class PresetTest extends \PHPUnit_Framework_TestCase
{
public function testMax()
{
$parser = new Preset\Max();
$this->assertEquals($this->getHtml(), $parser->transform($this->getText()));
}
public function testMedium()
{
$parser = new Preset\Medium();
$this->assertEquals($this->getHtml(), $parser->transform($this->getText()));
}
public function testMin()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
$parser = new Preset\Min();
$this->assertEquals($this->getHtml(), $parser->transform($this->getText()));
}
public function testLight()
{
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
$parser = new Preset\Light();
$this->assertEquals($this->getHtml(), $parser->transform($this->getText()));
}
protected function getText()
{
return file_get_contents(__DIR__.'/fixtures/big_text.markdown');
}
protected function getHtml()
{
return file_get_contents(__DIR__.'/fixtures/big_text.html');
}
}