You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Parse an image for src and alt
* Requested fixes
* Update tests to pass with alt text on images
* Add breaking test: return alt on implied photo from root element
* Fix breaking test: check for alt when implying photo prop
* Update test to be in line with latest fixes
* Rewrite broken test to correctly test 3 different cases
Co-authored-by: Martijn van der Ven <[email protected]>
$input = '<div class="h-entry"><img class="u-url h-card" alt="This should not be the value" src="This should be the value" /></div>';
248
248
$mf = Mf2\parse($input);
249
-
250
-
$this->assertEquals($mf['items'][0]['properties']['url'][0]['value'], 'This should be the value');
249
+
$this->assertEquals($mf['items'][0]['properties']['url'][0]['value'], 'This should be the value', json_encode($mf['items'][0]['properties']['url'][0]));
0 commit comments