You are here

function TagadelicPageTest::testTagadelicPageExists in Tagadelic 8.3

Test page displays.

File

src/Tests/TagadelicPageTest.php, line 24

Class

TagadelicPageTest
Tests for displaying tagadelic page.

Namespace

Drupal\tagadelic\Tests

Code

function testTagadelicPageExists() {
  $user = $this
    ->drupalCreateUser(array(
    'access content',
  ));
  $this
    ->drupalLogin($user);
  $this
    ->drupalGet('tagadelic');
  $this
    ->assertResponse(200);
  $this
    ->assertRaw('Tag Cloud');
}