You are here

function uc_addresses_test_entity_load in Ubercart Addresses 7

Implements hook_entity_load().

File

tests/uc_addresses_test.module, line 70
Testing module for Ubercart Addresses functionality.

Code

function uc_addresses_test_entity_load($entities, $entity_type) {
  if ($entity_type == 'uc_addresses') {
    uc_addresses_test_hook_invoked('entity_load', reset($entities));
  }
}