Skip to content

Instantly share code, notes, and snippets.

View BarisW's full-sized avatar

Baris Wanschers BarisW

View GitHub Profile
@BarisW
BarisW / gist:7797347
Created December 4, 2013 23:14
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'));