winter/tests/bootstrap.php
Samuel Georges 408c06a33f Fixes unit tests for case sensitive file systems
We should be using the class compiler here eventually
2015-07-25 12:29:57 +10:00

16 lines
269 B
PHP

<?php
/*
* October autoloader
*/
require __DIR__ . '/../bootstrap/autoload.php';
/*
* Fallback autoloader
*/
October\Rain\Support\ClassLoader::register();
October\Rain\Support\ClassLoader::addDirectories([
__DIR__.'/../modules',
__DIR__.'/../plugins'
]);