You are here

function authcache_test_session_clear in Authenticated User Page Caching (Authcache) 7.2

Clear the session.

1 string reference to 'authcache_test_session_clear'
authcache_test_menu in tests/authcache_test.module
Implements hook_menu().

File

tests/authcache_test.module, line 303
Mock module to aid in testing authcache.module.

Code

function authcache_test_session_clear() {
  unset($_SESSION);
  drupal_exit();
}