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

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

class Xml_helper_test extends CI_TestCase
{
	
	public function test_xml_convert()
	{
		$this->assertEquals('&lt;tag&gt;my &amp; test &#45; &lt;/tag&gt;', xml_convert('<tag>my & test - </tag>'));
	}
	
}