mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
30 lines
729 B
PHP
30 lines
729 B
PHP
--TEST--
|
|
SPL: DirectoryIterator test getGroup
|
|
--SKIPIF--
|
|
<?php
|
|
if (posix_geteuid() == 0) die('SKIP Cannot run test as root.');
|
|
--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
|
|
--FILE--
|
|
<?php
|
|
$dirname = 'DirectoryIterator_getGroup_basic';
|
|
mkdir($dirname);
|
|
$dir = new DirectoryIterator($dirname);
|
|
$expected = filegroup($dirname);
|
|
$actual = $dir->getGroup();
|
|
var_dump($expected == $actual);
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
$dirname = 'DirectoryIterator_getGroup_basic';
|
|
rmdir($dirname);
|
|
?>
|
|
--EXPECTF--
|
|
bool(true)
|