13 lines
270 B
PHP
13 lines
270 B
PHP
|
<?php defined('SYSPATH') OR die('No direct script access.');
|
||
|
|
||
|
return array
|
||
|
(
|
||
|
'modules' => array(
|
||
|
'unittest' => array(
|
||
|
'enabled' => TRUE,
|
||
|
'name' => 'Unittest',
|
||
|
'description' => 'Unit testing module',
|
||
|
'copyright' => '© 2009-2011 Kohana Team',
|
||
|
)
|
||
|
)
|
||
|
);
|