Subject: | Compare attribute values |
The following test passes, and I believe that it should not:
use Test::More;
plan tests => 1;
use Test::XML::Ordered qw(is_xml_ordered);
is_xml_ordered(
[string => '<xml stuff="foo"/>'],
[string => '<xml stuff="bar"/>'],
'XML structure'
);
It doesn't pass when using Test::XML, the only referenced distribution.
Nathan