Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / symfony / dom-crawler / Tests / CrawlerTest.php
index ec8512e4ef7fdde15745fa668de110597b0227e1..a8dc525e55d2f7770d47d007a3df981725b1329e 100644 (file)
@@ -413,6 +413,7 @@ EOF
 
         $this->assertEquals(array('One', 'Two', 'Three'), $crawler->extract('_text'), '->extract() returns an array of extracted data from the node list');
         $this->assertEquals(array(array('One', 'first'), array('Two', ''), array('Three', '')), $crawler->extract(array('_text', 'class')), '->extract() returns an array of extracted data from the node list');
+        $this->assertEquals(array(array(), array(), array()), $crawler->extract(array()), '->extract() returns empty arrays if the attribute list is empty');
 
         $this->assertEquals(array(), $this->createTestCrawler()->filterXPath('//ol')->extract('_text'), '->extract() returns an empty array if the node list is empty');
     }