Chris@0: container->get('state')->set('comment_test_links_alter_enabled', TRUE); Chris@0: } Chris@0: Chris@0: /** Chris@0: * Tests comment links altering. Chris@0: */ Chris@0: public function testCommentLinksAlter() { Chris@0: $this->drupalLogin($this->webUser); Chris@0: $comment_text = $this->randomMachineName(); Chris@0: $subject = $this->randomMachineName(); Chris@0: $comment = $this->postComment($this->node, $comment_text, $subject); Chris@0: Chris@0: $this->drupalGet('node/' . $this->node->id()); Chris@0: Chris@0: $this->assertLink(t('Report')); Chris@0: } Chris@0: Chris@0: }