You are here

function mongodb_session_simpletest_alter in MongoDB 7

Implements hook_simpletest_alter().

File

mongodb_session/mongodb_session.module, line 11
MongoDB Session implementation.

Code

function mongodb_session_simpletest_alter(&$groups) {

  // An alternative session handler module would not want to run the original
  // Session https handling test because it checks the sessions table in the
  // database.
  unset($groups['Session']);
}