X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fcebe%2Fmarkdown%2Ftests%2FMarkdownOLStartNumTest.php;fp=vendor%2Fcebe%2Fmarkdown%2Ftests%2FMarkdownOLStartNumTest.php;h=01788e3999dfbb7ac9e73a92e5e02945f7621847;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/vendor/cebe/markdown/tests/MarkdownOLStartNumTest.php b/vendor/cebe/markdown/tests/MarkdownOLStartNumTest.php new file mode 100644 index 000000000..01788e399 --- /dev/null +++ b/vendor/cebe/markdown/tests/MarkdownOLStartNumTest.php @@ -0,0 +1,32 @@ + + * @group default + */ +class MarkdownOLStartNumTest extends BaseMarkdownTest +{ + public function createMarkdown() + { + $markdown = new Markdown(); + $markdown->keepListStartNumber = true; + return $markdown; + } + + public function getDataPaths() + { + return [ + 'markdown-data' => __DIR__ . '/markdown-ol-start-num-data', + ]; + } +}