Gitiles
Code Review
Sign In
www.giggi.me
/
code-igniter-v3-giggi
/
a4d975e6f463205be8a2ca6481d863c3c8c108db
/
.
/
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>'
));
}
}