]> granicus.if.org Git - php/commitdiff
rename test to follow the convention and expand it a little
authorNuno Lopes <nlopess@php.net>
Sat, 29 Apr 2006 12:16:21 +0000 (12:16 +0000)
committerNuno Lopes <nlopess@php.net>
Sat, 29 Apr 2006 12:16:21 +0000 (12:16 +0000)
ext/tidy/tests/019.phpt [moved from ext/tidy/tests/tidy_019.phpt with 82% similarity]

similarity index 82%
rename from ext/tidy/tests/tidy_019.phpt
rename to ext/tidy/tests/019.phpt
index f92168b5a9ce4117fbc8254b79c9dfad7884982c..a54dac51825b76f0ff58394a3f465aa296b63bde 100644 (file)
@@ -5,8 +5,9 @@ Test getParent()
 --FILE--
 <?php
 $x = tidy_parse_string("<body><div>Content</div></body>");
+var_dump($x->body()->child[0]->name);
 var_dump($x->body()->child[0]->getParent()->name);
 ?>
 --EXPECT--
+string(3) "div"
 string(4) "body"
-