blob: a83fef91eb69a13e52c3afeecd70492dcd3adf04 [file] [log] [blame]
<?php
class Xml_helper_test extends CI_TestCase {
public function set_up()
{
$this->helper('xml');
}
public function test_xml_convert()
{
$this->assertEquals('&lt;tag&gt;my &amp; test &#45; &lt;/tag&gt;', xml_convert('<tag>my & test - </tag>'));
}
}