function actions_loop_test_install

7.x actions_loop_test.install actions_loop_test_install()

Implements hook_install().

File

drupal-7.x/modules/simpletest/tests/actions_loop_test.install, line 6

Code

function actions_loop_test_install() {
  db_update('system')
    ->fields(array('weight' => 1))
    ->condition('name', 'actions_loop_test')
    ->execute();
}