You are here

DisplayVariantTest.php in Zircon Profile 8

File

core/modules/system/src/Tests/Render/DisplayVariantTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Render\DisplayVariantTest.
 */
namespace Drupal\system\Tests\Render;

use Drupal\simpletest\WebTestBase;

/**
 * Tests selecting a display variant.
 *
 * @group Render
 */
class DisplayVariantTest extends WebTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'display_variant_test',
  );

  /**
   * Tests selecting the variant and passing configuration.
   */
  function testPageDisplayVariantSelectionEvent() {

    // Tests that our display variant was selected, and that its configuration
    // was passed correctly. If the configuration wasn't passed, we'd get an
    // error page here.
    $this
      ->drupalGet('<front>');
    $this
      ->assertRaw('A very important, required value.');
    $this
      ->assertRaw('Explicitly passed in context.');
    $this
      ->assertCacheTag('custom_cache_tag');
  }

}

Classes

Namesort descending Description
DisplayVariantTest Tests selecting a display variant.