mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-03-11 17:35:24 -04:00
22 lines
471 B
PHP
22 lines
471 B
PHP
<?php defined('SYSPATH') OR die('No direct access allowed.');
|
|
/**
|
|
* Unit_Test controller.
|
|
*
|
|
* $Id: unit_test.php 3769 2008-12-15 00:48:56Z zombor $
|
|
*
|
|
* @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;
|
|
}
|
|
|
|
} |