Skip to content

Instantly share code, notes, and snippets.

@BarisW
Created December 4, 2013 23:14
Show Gist options
  • Save BarisW/7797347 to your computer and use it in GitHub Desktop.
Save BarisW/7797347 to your computer and use it in GitHub Desktop.
Simpletest
// Create a promoted node to test the <title> tag on the frontpage view.
\Drupal::config('system.site')->set('page.front', 'node')->save();
$this->drupalCreateNode(array('type' => 'article', 'promote' => 1));
$this->drupalGet('');
$this->assertTitle('Home | ' . $this->container->get('config.factory')->get('system.site')->get('name'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment