Files
lichterei-web/kirby/config/tests.php
Bastian Allgeier 01277f79f2 first version
2019-01-13 23:17:34 +01:00

16 lines
380 B
PHP
Executable File

<?php
$testDir = dirname(__DIR__) . '/tests';
if (is_dir($testDir) === true) {
spl_autoload_register(function ($className) use ($testDir) {
$path = str_replace('Kirby\\', '', $className);
$path = str_replace('\\', '/', $path);
$file = $testDir . '/' . $path . '.php';
if (file_exists($file)) {
include $file;
}
});
}