Rename everything to CommonMark

This commit is contained in:
Haralan Dobrev 2014-09-14 00:02:11 +03:00
parent ce4a29aec5
commit 42222e6b01
3 changed files with 6 additions and 6 deletions

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="test/bootstrap.php" colors="true">
<testsuites>
<testsuite name="ParsedownTests">
<file>test/Test.php</file>
</testsuite>
<testsuite name="StandardMarkdown">
<file>test/standard-markdown/StandardMarkdownTest.php</file>
<testsuite name="ParsedownTests">
<file>test/Test.php</file>
</testsuite>
<testsuite name="CommonMark">
<file>test/commonmark/CommonMarkTest.php</file>
</testsuite>
</testsuites>
</phpunit>

View File

@ -5,7 +5,7 @@
*
* Some code based on the original JavaScript test runner by jgm.
*
* @link http://commonmark.net/ CommonMark
* @link http://commonmark.org/ CommonMark
* @link http://git.io/8WtRvQ JavaScript test runner
*/
class CommonMarkTest extends PHPUnit_Framework_TestCase