Show
Ignore:
Timestamp:
03/10/2008 09:07:34 AM (9 months ago)
Author:
Geert
Message:

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

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • 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                }