From 92bce405b0e0a0b942b85c8162936379dbf32635 Mon Sep 17 00:00:00 2001 From: phpnut Date: Thu, 23 Nov 2006 05:12:24 +0000 Subject: [PATCH] Merging fix from [3914] git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3915 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/config/paths.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/cake/config/paths.php b/cake/config/paths.php index 7ebcd79fe..e45d938eb 100644 --- a/cake/config/paths.php +++ b/cake/config/paths.php @@ -115,15 +115,19 @@ /** * Path to the controller test directory. */ - define ('CONTROLLER_TESTS', TESTS.APP_DIR.DS.'cases'.DS.'controllers'.DS); + define ('CONTROLLER_TESTS', TESTS.'cases'.DS.'controllers'.DS); +/** + * Path to the components test directory. + */ + define ('COMPONENT_TESTS', TESTS.'cases'.DS.'components'.DS); /** * Path to the helpers test directory. */ - define ('HELPER_TESTS', TESTS.APP_DIR.DS.'cases'.DS.'views'.DS.'helpers'.DS); + define ('HELPER_TESTS', TESTS.'cases'.DS.'views'.DS.'helpers'.DS); /** * Path to the models' test directory. */ - define ('MODEL_TESTS', TESTS.APP_DIR.DS.'cases'.DS.'models'.DS); + define ('MODEL_TESTS', TESTS.'cases'.DS.'models'.DS); /** * Path to the lib test directory. */