1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

Fix commonmark test

This commit is contained in:
Aidan Woods 2018-12-04 18:08:14 +01:00
parent 8c091b8e63
commit 82a528711f
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -2,12 +2,14 @@
namespace Erusev\Parsedown\Tests; namespace Erusev\Parsedown\Tests;
use PHPUnit\Framework\TestCase;
/** /**
* Test Parsedown against the CommonMark spec * Test Parsedown against the CommonMark spec
* *
* @link http://commonmark.org/ CommonMark * @link http://commonmark.org/ CommonMark
*/ */
class CommonMarkTestStrict extends PHPUnit_Framework_TestCase class CommonMarkTestStrict extends TestCase
{ {
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/CommonMark/master/spec.txt'; const SPEC_URL = 'https://raw.githubusercontent.com/jgm/CommonMark/master/spec.txt';