Skip to content

Commit

Permalink
refixing missing skipif
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoe Slattery committed Dec 30, 2008
1 parent e33a951 commit 553d34e
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 4 deletions.
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMCharacterData_appendData_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DOMCharacterData::appendData basic functionality test
--CREDITS--
Mike Sullivan <[email protected]>
#TestFest 2008 (London)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMComment_appendData_basic_Sullivan.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DOMComment::appendData basic functionality test
--CREDITS--
Mike Sullivan <[email protected]>
#TestFest 2008 (London)
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
2 changes: 1 addition & 1 deletion ext/dom/tests/DOMComment_replaceData_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Test replacing data into a DOMComment basic test
Andrew Larssen <[email protected]>
London TestFest 2008
--SKIPIF--
<?php // require_once('skipif.inc'); ?>
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Testing DOMDocumentFragment::appendXML and DOMDocumentFragment::hasChildNodes
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$doc = new DOMDocument();
Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMDocument_createAttribute_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DomDocument::createAttribute() - basic test for DomDocument::createAttribute()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMDocument_createAttribute_error.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test DOMDocument::createAttribute() for expected expection thrown when wrong parameter passed
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$dom = new DOMDocument();
Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMDocument_createAttribute_error1.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DomDocument::createAttribute() - error test for DomDocument::createAttribute()
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMDocument_createAttribute_variation.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
--TEST--
Test DOMDocument::createAttribute() for expected return value
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
$dom = new DOMDocument();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DomDocument::createProcessingInstruction() - basic test for DomDocument::createP
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DomDocument::createProcessingInstruction() - error test for DomDocument::createP
--CREDITS--
Muhammad Khalid Adnan
# TestFest 2008
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php

Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMElement_hasAttributes_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DOMNode: hasAttributes()
--CREDITS--
James Lewis <[email protected]>
#TestFest 2008
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
require_once("dom_test.inc");
Expand Down
2 changes: 2 additions & 0 deletions ext/dom/tests/DOMNode_issamenode_basic.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ DOMNode: isSameNode()
--CREDITS--
James Lewis <[email protected]>
#TestFest 2008
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
require_once("dom_test.inc");
Expand Down
6 changes: 3 additions & 3 deletions ext/dom/tests/DOMNode_normalize_basic.phpt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
--TEST--
normalize()
DOMNode::normalize()
--SKIPIF--
<?php
include('skipif.inc');
?>
--FILE--
<?php
<?php

/* Create an XML document
* with structure
* <book>
* <book>
* <author></author>
* <title>This is the title</title>
* </book>
Expand Down

0 comments on commit 553d34e

Please sign in to comment.