You are here

function UserValidationTest::testValidCharsName in SimpleTest 6

Same name and namespace in other branches
  1. 5 tests/user_validation.test \UserValidationTest::testValidCharsName()

File

tests/user_module.test, line 122

Class

UserValidationTest
This class is based on the original Simpletest Module by Moshe Weitzman

Code

function testValidCharsName() {
  $name = 'ab/';
  $result = user_validate_name($name);
  $this
    ->assertNotNull($result, 'Invalid chars in username');
}