blob: dded2e8244f4f83a18ffd6debe24c0d2e024c24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class Common_test extends CI_TestCase {
// ------------------------------------------------------------------------
public function test_is_php()
{
$this->assertEquals(TRUE, is_php('1.2.0'));
$this->assertEquals(FALSE, is_php('9999.9.9'));
}
}
|