comparison vendor/symfony/var-dumper/Tests/Dumper/HtmlDumperTest.php @ 13:5fb285c0d0e3

Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've been lucky to get away with this so far, as we don't support self-registration which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5 was vulnerable to.
author Chris Cannam
date Mon, 23 Apr 2018 09:33:26 +0100
parents 4c8ae668cc8c
children 129ea1e6d783
comparison
equal deleted inserted replaced
12:7a779792577d 13:5fb285c0d0e3
20 */ 20 */
21 class HtmlDumperTest extends TestCase 21 class HtmlDumperTest extends TestCase
22 { 22 {
23 public function testGet() 23 public function testGet()
24 { 24 {
25 if (ini_get('xdebug.file_link_format') || get_cfg_var('xdebug.file_link_format')) {
26 $this->markTestSkipped('A custom file_link_format is defined.');
27 }
28
25 require __DIR__.'/../Fixtures/dumb-var.php'; 29 require __DIR__.'/../Fixtures/dumb-var.php';
26 30
27 $dumper = new HtmlDumper('php://output'); 31 $dumper = new HtmlDumper('php://output');
28 $dumper->setDumpHeader('<foo></foo>'); 32 $dumper->setDumpHeader('<foo></foo>');
29 $dumper->setDumpBoundaries('<bar>', '</bar>'); 33 $dumper->setDumpBoundaries('<bar>', '</bar>');