# @(#) $Id$
use strict;
use warnings;
use Test::More tests => 3;
use Test::XML;
{
local $TODO = 'make order significant';
isnt_xml(
'
ace
',
'ace
',
'characters are not clustered',
);
isnt_xml(
'ace
',
'ace
',
'order is significant',
);
isnt_xml(
'
',
'
',
'order is significant when not mixed content',
);
}
# Local Variables:
# mode: cperl
# cperl-indent-level: 4
# indent-tabs-mode: nil
# End:
# vim: set ai et sw=4 syntax=perl :