tims-todo/tests/system/PHPTest.php

14 lines
158 B
PHP
Raw Normal View History

2014-08-08 15:41:59 -04:00
<?php
/**
* @group System
*/
class PHPTest extends CIUnit_TestCase {
public function testPhpVersion()
{
2014-08-13 20:50:57 -04:00
$this->assertTrue(phpversion() >= 5.4);
2014-08-08 15:41:59 -04:00
}
}