Adding App::import() tests for plugin datasources.

This commit is contained in:
jperras 2009-09-23 23:12:22 -04:00
parent 33117ee13d
commit 98bdaaf87e

View file

@ -487,6 +487,10 @@ class AppImportTest extends UnitTestCase {
$file = App::import('Model', 'NonExistingModel');
$this->assertFalse($file);
$file = App::import('Datasource', 'DboSource');
$this->assertTrue($file);
$this->assertTrue(class_exists('DboSource'));
}
App::build(array(
@ -502,6 +506,10 @@ class AppImportTest extends UnitTestCase {
$this->assertTrue($result);
$this->assertTrue(class_exists('OtherHelperHelper'));
$result = App::import('Datasource', 'TestPlugin.TestSource');
$this->assertTrue($result);
$this->assertTrue(class_exists('TestSource'));
App::build();
}