You are here

SocialAuthLoginBlockTest.php in Social Auth 8.2

Same filename and directory in other branches
  1. 3.x tests/src/Functional/SocialAuthLoginBlockTest.php

File

tests/src/Functional/SocialAuthLoginBlockTest.php
View source
<?php

namespace Drupal\Tests\social_auth\Functional;


/**
 * Test Social Auth Login block.
 *
 * @group social_auth
 */
class SocialAuthLoginBlockTest extends SocialAuthTestBase {

  /**
   * Test that the block is showing up.
   *
   * No need to specify a provider since it is by default NULL and Social Auth
   * does not have any authentication route by itself.
   *
   * @throws \Behat\Mink\Exception\ResponseTextException
   */
  public function testBlockExists() {
    parent::checkLinkToProviderExists();
  }

}

Classes

Namesort descending Description
SocialAuthLoginBlockTest Test Social Auth Login block.