summaryrefslogtreecommitdiff
path: root/test/HTML5/ParserTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/HTML5/ParserTest.php')
-rw-r--r--test/HTML5/ParserTest.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/HTML5/ParserTest.php b/test/HTML5/ParserTest.php
deleted file mode 100644
index 7f36237..0000000
--- a/test/HTML5/ParserTest.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-namespace HTML5\Tests;
-
-use \HTML5\Parser;
-
-require_once 'TestCase.php';
-
-class ParserTest extends TestCase {
- public function testParse() {
- $result = Parser::parse('<html><body></body></html>');
- $this->assertTrue($result instanceof \DOMDocument);
- }
- public function testParseFragment() {
- $result = Parser::parseFragment('<b>asdf</b> foo');
- $this->assertTrue($result instanceof \DOMNodeList);
- }
-}