You are here

function CasUserTestCase::testCaseInsensitiveLogin in CAS 6.3

Same name and namespace in other branches
  1. 7 cas.test \CasUserTestCase::testCaseInsensitiveLogin()

File

./cas.test, line 435
Tests for cas.module.

Class

CasUserTestCase
Test case to test user editing behavior.

Code

function testCaseInsensitiveLogin() {
  $account = $this
    ->casCreateUser();
  $this
    ->casLogin(strtoupper($account->cas_name));
  $this
    ->assertLoggedIn($account);
}