Gitiles
Code Review
Sign In
www.giggi.me
/
code-igniter-v3-giggi
/
15a29e11a1003ff253b4df7c8a4c6e97b052a06d
/
.
/
tests
/
codeigniter
/
helpers
/
xml_helper_test.php
blob: 49f49e1661ae48467706bf02c2f5fc58e4e060df [
file
] [
log
] [
blame
]
<?
php
require_once
(
BASEPATH
.
'helpers/xml_helper.php'
);
class
Xml_helper_test
extends
CI_TestCase
{
public
function
test_xml_convert
()
{
$this
->
assertEquals
(
'<tag>my & test - </tag>'
,
xml_convert
(
'<tag>my & test - </tag>'
));
}
}