Browse Source

made namespace autoloader test more realistic.

Taylor Otwell 13 years ago
parent
commit
7fa80bcdba

+ 1 - 1
tests/cases/laravel/autoloader.test.php

@@ -93,7 +93,7 @@ class AutoloaderTest extends PHPUnit_Framework_TestCase {
 	public function testClassesMappedByNamespaceCanBeLoaded()
 	{
 		Autoloader::namespaces(array(
-			'Dashboard' => APP_PATH.'dashboard',
+			'Dashboard' => BUNDLE_PATH.'dashboard'.DS.'models',
 		));
 
 		$this->assertInstanceOf('Dashboard\\Repository', new Dashboard\Repository);

+ 7 - 0
tests/laravel/bundles/dashboard/models/repository.php

@@ -0,0 +1,7 @@
+<?php namespace Dashboard;
+
+/**
+ * This class is used for testing the auto-loading of classes
+ * that are mapped by namesapce.
+ */
+class Repository {}