Test::XML::Simple version 0.01 ============================ Test::SML::Simple provides a test class which makes it easy to do basic Test::Builder-style tests on XML input. use Test::XML::Simple test=>4; is_valid $xml, "Is valid XML"; xml_node $xml, "/xpath/expression", "specified xpath node is present"; xml_text_is $xml, '/xpath/expr', "expected value", "specified text present"; xml_text_like $xml, '/xpath/expr', qr/expected/, "regex text present"; xml_is_deeply $xml, '/xpath/expr', $xml_fragment, "fragment matches path"; INSTALLATION To install this module type the following: perl Makefile.PL make make test make install DEPENDENCIES This module requires these other modules and libraries: Test::Builder Test::More XML::XPath COPYRIGHT AND LICENCE Copyright (C) 2005 by Yahoo! This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.6.1 or, at your option, any later version of Perl 5 you may have available.