You are here

public function UserLoginTest::testUserLoginEvent in Rules 8.3

Tests the event metadata.

File

tests/src/Unit/Integration/Event/UserLoginTest.php, line 15

Class

UserLoginTest
Checks that the event "rules_user_login" is correctly defined.

Namespace

Drupal\Tests\rules\Unit\Integration\Event

Code

public function testUserLoginEvent() {
  $event = $this->eventManager
    ->createInstance('rules_user_login');
  $user_context_definition = $event
    ->getContextDefinition('account');
  $this
    ->assertSame('entity:user', $user_context_definition
    ->getDataType());
  $this
    ->assertSame('Logged in user', $user_context_definition
    ->getLabel());
}