You are here

function UUIDFunctionalityTestCase::testDefaultUserUUID in Universally Unique IDentifier 6

Verify uuid behavior for users.

File

./uuid.test, line 190
Functionality tests for UUID module.

Class

UUIDFunctionalityTestCase
Test basic uuid resolver functionality.

Code

function testDefaultUserUUID() {

  // Create a user.
  $object = $this
    ->drupalCreateUser();

  // Verify fields are not attached to the node.
  $this
    ->assertTrue(empty($object->uuid), t("User has no uuid field attached with default settings."), t("User UUID"));
}