summaryrefslogtreecommitdiffstats
path: root/tests/codeigniter/core/Lang_test.php
blob: 82e279a525dd640859253d3c18360a6bab46d50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php

class Lang_test extends CodeIgniterTestCase {
	
	protected $lang;
	
	public function setUp()
	{
		$cls = $this->ci_core_class('lang');
		$this->lang = new $cls;
	}
	
	// --------------------------------------------------------------------
	
	public function testLoad()
	{
		// get_config needs work
		$this->markTestIncomplete('get_config needs work');
		//$this->assertTrue($this->lang->load('profiler'));
	}
	
	// --------------------------------------------------------------------

	public function testLine()
	{
		$this->markTestIncomplete('get_config needs work');
		
		$this->assertEquals('URI STRING', $this->lang->line('profiler_uri_string'));
	}
	
}