summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/helpers/number_helper_test.php
blob: 02fc49c3d34ad2121e0fa091c11dd8c552b587dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

require_once(BASEPATH.'helpers/number_helper.php');

class Number_helper_test extends CI_TestCase
{
	
	public function test_byte_format()
	{
		// $this->assertEquals('456 Bytes', byte_format(456));
	}
	
}