Gitiles
Code Review
Sign In
www.giggi.me
/
code-igniter-v3-giggi
/
8d021e647f6a094b6097d1ea89119a4047efc8dd
/
.
/
tests
/
codeigniter
/
helpers
/
xml_helper_test.php
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
(
'<tag>my & test - </tag>'
,
xml_convert
(
'<tag>my & test - </tag>'
));
}
}