You are here

public function LoginTest::testIpMatchGlobal in Restrict Login or Role Access by IP Address 8.4

File

src/Tests/LoginTest.php, line 13

Class

LoginTest
Tests logins are restricted to certain IP address range(s).

Namespace

Drupal\restrict_by_ip\Tests

Code

public function testIpMatchGlobal() {

  // Add global IP range.
  $this->conf
    ->set('login_range', $this->currentIPCIDR)
    ->save();
  $this
    ->drupalLogin($this->regularUser);
}