You are here

function AcquiaLiftsWebTest::testNonNodePage in Acquia Lift Connector 7.3

File

tests/acquia_lift.test, line 473
Tests for Acquia Lift Profiles module.

Class

AcquiaLiftsWebTest
Tests Acquia Lift functionality.

Code

function testNonNodePage() {
  $this
    ->configureLift();
  $this
    ->drupalGet('/');
  $this
    ->assertLiftMetaTag('content_title');
  $this
    ->assertLiftMetaTag('context_language', 'en');
  $this
    ->assertNoLiftMetaTag('content_type');
  $this
    ->assertNoLiftMetaTag('published_date');
  $this
    ->assertNoLiftMetaTag('post_id', '');
  $this
    ->assertNoLiftMetaTag('content_uuid', '');
  $this
    ->assertNoLiftMetaTag('page_type', '');
}