We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ce2f5e commit deb02d7Copy full SHA for deb02d7
tests/Test.php
@@ -79,3 +79,30 @@ public function __toString() : string
79
],
80
81
]);
82
+
83
+$inputBuildsExpectedEscape = function ($html, $args) : void {
84
+ $output = html_build_attributes(...$args);
85
86
+ expect($output)->toBe($html);
87
+};
88
89
+/**
90
+ * @param string $html The expected return value.
91
+ * @param mixed $input The variable to be passed to the function.
92
+ * @param callable $escape The custom escape callback to be passed to the function.
93
+ */
94
+it('escapes HTML attributes', $inputBuildsExpectedEscape)->with([
95
+ [
96
+ 'id="FOOBAR"',
97
98
99
+ 'id' => 'foobar',
100
+ ],
101
+ function ($value, $name) {
102
+ expect($name)->toBe('id');
103
104
+ return strtoupper($value);
105
+ },
106
107
108
+]);
0 commit comments