20 lines
439 B
PHP
20 lines
439 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
require_once("../../../config/dmsDefaults.php");
|
||
|
|
require_once(KT_LIB_DIR . '/import/fsimportstorage.inc.php');
|
||
|
|
|
||
|
|
$f = new KTFSImportStorage(KT_DIR . "/tests/import/dataset1");
|
||
|
|
|
||
|
|
$afiles = array("a/b");
|
||
|
|
|
||
|
|
if ($f->listDocuments("a") !== $afiles) {
|
||
|
|
print "Subdir (a) file listing failure\n";
|
||
|
|
print "Should be:\n";
|
||
|
|
var_dump($afiles);
|
||
|
|
print "Got:\n";
|
||
|
|
var_dump($f->listDocuments("a"));
|
||
|
|
exit(0);
|
||
|
|
}
|
||
|
|
|
||
|
|
print "SUCCESS\n";
|