DisplayVariantTest.php in Zircon Profile 8.0
Same filename in this branch
Same filename and directory in other branches
Namespace
Drupal\system\Tests\RenderFile
core/modules/system/src/Tests/Render/DisplayVariantTest.phpView 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
Name | Description |
---|---|
DisplayVariantTest | Tests selecting a display variant. |