We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
HTMLEntry
1 parent 253cd95 commit 2a5f706Copy full SHA for 2a5f706
1 file changed
src/core/etl/tests/Flow/ETL/Tests/Unit/Row/EntryFactoryTest.php
@@ -62,6 +62,11 @@ public static function provide_recognized_data() : \Generator
62
xml_entry('e', $xml),
63
];
64
65
+ yield 'html' => [
66
+ $html = '<html><body><div id="id">2</div><p>3</p></body></html>',
67
+ html_entry('e', $html),
68
+ ];
69
+
70
yield 'uuid' => [
71
$uuid = '00000000-0000-0000-0000-000000000000',
72
uuid_entry('e', $uuid),
@@ -82,6 +87,10 @@ public static function provide_unrecognized_data() : \Generator
82
87
'<root',
83
88
84
89
90
+ yield 'html alike' => [
91
+ '<html',
92
93
85
94
yield 'space' => [
86
95
' ',
96
0 commit comments