summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Common_test.php
blob: 29b512d8a2b1ef4365b6669c7a6c23f115dc7b58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?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'));
	}
	
}