Gitiles
Code Review
Sign In
www.giggi.me
/
code-igniter-v3-giggi
/
063f5d8098e9bf09e7756d153ed92373ffdc676d
/
.
/
tests
/
codeigniter
/
helpers
/
xml_helper_test.php
blob: e8cf411daa35d8c78ad9340ed724fba4cbee0a3e [
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>'
));
}
}