Skip to content

Commit

Permalink
test debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemadison13 committed Mar 23, 2022
1 parent 4210100 commit 2a83721
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions tests/phpunit/src/DrupalSettingsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,8 @@ public function testSetupDefaultLocalSettings() {
$output_array = $this->drushJson('status');
$this->assertEquals($output_array['uri'], $this->config->get('project.local.uri'));
$drush_local_site_yml = YamlMunge::parseFile("$this->sandboxInstance/docroot/sites/$site/local.drush.yml");
$ci_yml = YamlMunge::parseFile("$this->sandboxInstance/blt/ci.blt.yml");
$this->say("Exporting Variable for Local Host URI");
print_R($drush_local_site_yml);

$this->say("Exporting Variable for Project Hostname");
print_R($ci_yml);

$this->say("Exporting Variable for Drush JSON");
print_R($output_array);


$this->assertEquals($ci_yml['project.local.hostname'], $drush_local_site_yml['options']['uri']);
$this->assertEquals("http://127.0.0.1:8080", $drush_local_site_yml['options']['uri']);
}
}

Expand Down

0 comments on commit 2a83721

Please sign in to comment.