N°8440 XML assembly failing when a file name contains a quote

This commit is contained in:
Romain Quetiez
2025-07-08 17:31:10 +02:00
parent 0462298cd3
commit 599e08f150

View File

@@ -2135,6 +2135,25 @@ XML
</nodeA>
</root>',
],
'N°8440 Quotes are allowed in ids' => [
'sInitialXML' => <<<XML
<nodeA>
<nodeB id="I'm happy"/>
</nodeA>
XML
,
'sDeltaXML' => <<<XML
<nodeA>
<nodeB id="I'm happy" _delta="redefine"/>
<nodeB id="I'm happy" _delta="delete"/>
</nodeA>
XML
,
'sExpectedXML' => <<<XML
<nodeA/>
XML
,
],
];
}