diff options
author | Greg Aker <greg.aker@ellislab.com> | 2011-04-22 18:21:31 +0200 |
---|---|---|
committer | Greg Aker <greg.aker@ellislab.com> | 2011-04-22 18:21:31 +0200 |
commit | 9c5e13f6b8484f8edc6854ba9045752dc51efaa3 (patch) | |
tree | 738c864a8a74e2703fe978ec4859031b71dfd8cd /tests/codeigniter/helpers/xml_helper_test.php | |
parent | c0b133c02e057b6506726b794ba4582bf18ed663 (diff) | |
parent | 5de50ec2fefc7dad1fd768573ca3f47538fd8988 (diff) |
Merging in default branch
Diffstat (limited to 'tests/codeigniter/helpers/xml_helper_test.php')
-rw-r--r-- | tests/codeigniter/helpers/xml_helper_test.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/codeigniter/helpers/xml_helper_test.php b/tests/codeigniter/helpers/xml_helper_test.php new file mode 100644 index 000000000..49f49e166 --- /dev/null +++ b/tests/codeigniter/helpers/xml_helper_test.php @@ -0,0 +1,13 @@ +<?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>')); + } + +}
\ No newline at end of file |