blob: f9bf6c27fa5eb94342475c2a958f3073ceb44142 (
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'));
}
}
|