Mercurial > hg > cmmr2012-drupal-site
view core/modules/taxonomy/tests/src/Functional/TermContextualLinksTest.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\taxonomy\Functional; /** * Tests views contextual links on terms. * * @group taxonomy */ class TermContextualLinksTest extends TaxonomyTestBase { /** * {@inheritdoc} */ public static $modules = [ 'contextual', ]; /** * Tests contextual links. */ public function testTermContextualLinks() { $vocabulary = $this->createVocabulary(); $term = $this->createTerm($vocabulary); $user = $this->drupalCreateUser([ 'administer taxonomy', 'access contextual links', ]); $this->drupalLogin($user); $this->drupalGet('taxonomy/term/' . $term->id()); $this->assertSession()->elementAttributeContains('css', 'div[data-contextual-id]', 'data-contextual-id', 'taxonomy_term:taxonomy_term=' . $term->id() . ':'); } }