comparison core/tests/Drupal/FunctionalTests/BrowserTestBaseTest.php @ 12:7a779792577d

Update Drupal core to v8.4.5 (via Composer)
author Chris Cannam
date Fri, 23 Feb 2018 15:52:07 +0000
parents 4c8ae668cc8c
children 1fec387a4317
comparison
equal deleted inserted replaced
11:bfffd8d7479a 12:7a779792577d
631 $this->checkForMetaRefresh(); 631 $this->checkForMetaRefresh();
632 // Check that we are now on the test page. 632 // Check that we are now on the test page.
633 $this->assertSession()->pageTextContains('Test page text.'); 633 $this->assertSession()->pageTextContains('Test page text.');
634 } 634 }
635 635
636 public function testGetDefaultDriveInstance() {
637 putenv('MINK_DRIVER_ARGS=' . json_encode([NULL, ['key1' => ['key2' => ['key3' => 3, 'key3.1' => 3.1]]]]));
638 $this->getDefaultDriverInstance();
639 $this->assertEquals([NULL, ['key1' => ['key2' => ['key3' => 3, 'key3.1' => 3.1]]]], $this->minkDefaultDriverArgs);
640 }
641
636 } 642 }