diff options
Diffstat (limited to 'ext/spl/tests/SplFileInfo_getInode_basic.phpt')
-rw-r--r-- | ext/spl/tests/SplFileInfo_getInode_basic.phpt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/ext/spl/tests/SplFileInfo_getInode_basic.phpt b/ext/spl/tests/SplFileInfo_getInode_basic.phpt index 380b865cd2..9ee2c6ee51 100644 --- a/ext/spl/tests/SplFileInfo_getInode_basic.phpt +++ b/ext/spl/tests/SplFileInfo_getInode_basic.phpt @@ -1,19 +1,19 @@ ---TEST--
-SPL: Spl File Info test getInode
---CREDITS--
+--TEST-- +SPL: Spl File Info test getInode +--CREDITS-- Cesare D'Amico <cesare.damico@gruppovolta.it> Andrea Giorgini <agiorg@gmail.com> Filippo De Santis <fd@ideato.it> Daniel Londero <daniel.londero@gmail.com> Francesco Trucchia <ft@ideato.it> Jacopo Romei <jacopo@sviluppoagile.it> -#Test Fest Cesena (Italy) on 2009-06-20
---SKIPIF--
-<?php
-if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test not for Windows platforms");
-?>
---FILE--
-<?php
+#Test Fest Cesena (Italy) on 2009-06-20 +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) == 'WIN') die("skip this test not for Windows platforms"); +?> +--FILE-- +<?php //file touch ('SplFileInfo_getInode_basic.txt'); @@ -25,6 +25,6 @@ var_dump($fileInfo->getInode() == $result); --CLEAN-- <?php unlink('SplFileInfo_getInode_basic.txt'); -?>
---EXPECTF--
+?> +--EXPECTF-- bool(true) |