| 1 | <?php |
||
| 17 | /** |
||
| 18 | * Markdown history renderer test case. |
||
| 19 | * |
||
| 20 | * @author Andrii Vasyliev <[email protected]> |
||
| 21 | */ |
||
| 22 | class MarkdownRendererTest extends \PHPUnit_Framework_TestCase |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var MarkdownRenderer |
||
| 26 | */ |
||
| 27 | protected $object; |
||
| 28 | |||
| 29 | protected function setUp() |
||
| 33 | |||
| 34 | protected function tearDown() |
||
| 37 | |||
| 38 | public function testRender() |
||
| 39 | { |
||
| 40 | $path = __DIR__ . '/minimal.md'; |
||
| 41 | $parser = new MarkdownParser(); |
||
| 42 | $history = $parser->parsePath($path); |
||
| 47 |