Eric Barnes | 68286a4 | 2011-04-21 22:00:33 -0400 | [diff] [blame^] | 1 | <?php |
2 | |||||
3 | require_once(BASEPATH.'helpers/xml_helper.php'); | ||||
4 | |||||
5 | class Xml_helper_test extends CI_TestCase | ||||
6 | { | ||||
7 | |||||
8 | public function test_xml_convert() | ||||
9 | { | ||||
10 | $this->assertEquals('<tag>my & test - </tag>', xml_convert('<tag>my & test - </tag>')); | ||||
11 | } | ||||
12 | |||||
13 | } |