mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Merging fix from [3914]
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3915 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
ac552a256e
commit
92bce405b0
1 changed files with 7 additions and 3 deletions
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue