summaryrefslogtreecommitdiff
path: root/core/config/config.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-01 07:55:48 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-01 07:55:48 +0000
commitf8b4c669063b49acd658b1d85194632b57350e68 (patch)
tree5fe90ad082bea167d8fefb9a0ce4b05363063cea /core/config/config.php
parent146f34dc07c7c47505d8a6e4bdf9e535fcddfbb5 (diff)
Set up unit test framework. Tweak configuration so that it only runs in
command line mode, and expects to put data into test/var. Create a module to wrap it that generates a nice text-only view of the output.
Diffstat (limited to 'core/config/config.php')
-rw-r--r--core/config/config.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/config/config.php b/core/config/config.php
index bd0d781b..94f22364 100644
--- a/core/config/config.php
+++ b/core/config/config.php
@@ -67,7 +67,7 @@ $config['log_threshold'] = 4;
/**
* Message logging directory.
*/
-$config['log_directory'] = VARPATH.'logs';
+$config['log_directory'] = VARPATH . 'logs';
/**
* Enable or disable displaying of Kohana error pages. This will not affect
@@ -96,4 +96,6 @@ $config['extension_prefix'] = 'MY_';
*/
$config['modules'] = array
(
+ MODPATH . 'gallery_unit_test',
+ MODPATH . 'unit_test',
);