Issue #2379459 by larowlan: Add a test for forum action links for anon users

8.0.x
Alex Pott 2014-11-21 11:06:11 +00:00
parent 839186c008
commit 7022daa7dc
1 changed files with 5 additions and 0 deletions

View File

@ -201,6 +201,11 @@ class ForumTest extends WebTestBase {
$vocabulary->save();
$this->drupalGet('forum');
$this->assertTitle(t('Discussions | Drupal'));
// Test anonymous action link.
$this->drupalLogout();
$this->drupalGet('forum/' . $this->forum['tid']);
$this->assertLink(t('Log in to post new content in the forum.'));
}
/**