Browse Source

added TODO for Load class DEBUG autoload

master
Anton Grebnev 13 years ago
parent
commit
b2f20ff293
  1. 4
      tests/LoadTest.php

4
tests/LoadTest.php

@ -60,6 +60,9 @@ class LoadTest extends PHPUnit_Framework_TestCase
Load::autoload('Action'); Load::autoload('Action');
} }
/**
* @TODO: Load::autoload() needs self::$autoload = require(self::$file); after self::buildAutoload();
*/
public function testDebugAutoload() public function testDebugAutoload()
{ {
Load::setAutoloadFrom(self::$file); Load::setAutoloadFrom(self::$file);
@ -70,7 +73,6 @@ class LoadTest extends PHPUnit_Framework_TestCase
define('DEBUG', true); define('DEBUG', true);
Load::autoload('Func'); Load::autoload('Func');
Load::autoload('Captcha'); Load::autoload('Captcha');
} }
public function testAutoloadArrayExists() public function testAutoloadArrayExists()

Loading…
Cancel
Save