MarkdownTest.php 582 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * @copyright Copyright (c) 2014 Carsten Brandt
  4. * @license https://github.com/cebe/markdown/blob/master/LICENSE
  5. * @link https://github.com/cebe/markdown#readme
  6. */
  7. namespace cebe\markdown\latex\tests;
  8. use cebe\markdown\latex\Markdown;
  9. /**
  10. * Test case for traditional markdown.
  11. *
  12. * @author Carsten Brandt <mail@cebe.cc>
  13. * @group default
  14. */
  15. class MarkdownTest extends BaseMarkdownLatexTest
  16. {
  17. public function createMarkdown()
  18. {
  19. return new Markdown();
  20. }
  21. public function getDataPaths()
  22. {
  23. return [
  24. 'markdown-data' => __DIR__ . '/markdown-data',
  25. ];
  26. }
  27. }