blob: cec12982d838eeb89839cb87569f4b4c10b47d5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
require_once(BASEPATH.'helpers/email_helper.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'));
}
}
|