blob: 06932b9fd3d166eb2b887de58b7cb807d02b881b [file] [log] [blame]
Alex Bilbie526d88f2012-10-16 18:19:30 +01001<?php
2
3class Language_helper_test extends CI_TestCase {
4
5 public function test_lang()
6 {
7 $this->helper('language');
8 $this->ci_instance_var('lang', new Mock_Core_Lang());
9
10 $this->assertFalse(lang(1));
11 $this->assertEquals('<label for="foo"></label>', lang(1, 'foo'));
12 }
13
14}