1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
package main;
use strict;
use warnings;
use Test::More tests => 2;
use Data::Dumper;
$Data::Dumper::Indent = 0;
$Data::Dumper::Sortkeys = 1;
use XML::Hash::XS 'xml2hash';
$XML::Hash::XS::keep_root = 0;
our $xml_decl_utf8 = qq{<?xml version="1.0" encoding="utf-8"?>};
{
is
Dumper(xml2hash('<root a="abc def&'<>""/>', utf8 => 0)),
Dumper({ a => "abc\302\240def&\'<>\"" }),
'references in the attribute',
;
}
{
is
xml2hash('<root>&abc def&<>"'</root>', utf8 => 0),
"&abc\302\240def&<>\"'",
'references in the content',
;
}
|