Changeset 2267

Show
Ignore:
Timestamp:
03/10/08 09:07:34 (6 months ago)
Author:
Geert
Message:

More svn property stuff on unit_test module. This should round things up.

Location:
trunk/modules/unit_test
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/unit_test/controllers/unit_test.php

    • Property svn:eol-style set to LF
    • Property copyright set to Copyright (c) 2007 Kohana Team
    • Property svn:keywords set to Id
    r2266 r2267  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    22/** 
    3  * Unit_test controller 
     3 * Unit_Test controller. 
     4 * 
     5 * $Id$ 
    46 * 
    57 * @package    Unit_Test 
  • trunk/modules/unit_test/i18n/en_US/unit_test.php

    • Property svn:eol-style set to LF
    • Property copyright set to Copyright (c) 2007 Kohana Team
  • trunk/modules/unit_test/tests/Example_Test.php

    • Property svn:eol-style set to LF
    • Property copyright set to Copyright (c) 2007 Kohana Team
    • Property svn:keywords set to Id
    r2266 r2267  
    11<?php defined('SYSPATH') or die('No direct script access.'); 
    2  
     2/** 
     3 * Example Test. 
     4 * 
     5 * $Id$ 
     6 * 
     7 * @package    Unit_Test 
     8 * @author     Kohana Team 
     9 * @copyright  (c) 2007-2008 Kohana Team 
     10 * @license    http://kohanaphp.com/license.html 
     11 */ 
    312class Example_Test extends Unit_Test_Case { 
    413 
     
    5160        { 
    5261            // By supplying $var in the debug parameter, 
    53             // we can on which number this test fails. 
     62            // we can see on which number this test fails. 
    5463            $this->assert_true($var < 100, $var); 
    5564        } 
  • trunk/modules/unit_test/views/kohana_unit_test.php

    • Property svn:eol-style set to LF
    • Property copyright set to Copyright (c) 2007 Kohana Team