summaryrefslogtreecommitdiff
path: root/modules/unit_test/controllers/unit_test.php
blob: 1481d9ff25e7df2aa9a1d539d9c74c3d4d9f62ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php defined('SYSPATH') or die('No direct script access.');
/**
 * 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;
	}

}