Refresh from kohana svn trunk r3771

This commit is contained in:
Bharat Mediratta
2008-12-15 08:52:32 +00:00
parent 31759cb3b3
commit 628058b4ed
4 changed files with 687 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php defined('SYSPATH') OR die('No direct access allowed.');
/**
* Unit_Test controller.
*
* $Id$
*
* @package Unit_Test
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Unit_test_Controller extends Controller {
const ALLOW_PRODUCTION = FALSE;
public function index()
{
// Run tests and show results!
echo new Unit_Test;
}
}