diff options
Diffstat (limited to 'modules/openid/tests/openid_test.install')
-rw-r--r-- | modules/openid/tests/openid_test.install | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/modules/openid/tests/openid_test.install b/modules/openid/tests/openid_test.install deleted file mode 100644 index 3bd4978f1a2..00000000000 --- a/modules/openid/tests/openid_test.install +++ /dev/null @@ -1,17 +0,0 @@ -<?php - -/** - * @file - * Install, update and uninstall functions for the openid_test module. - */ - -/** - * Implements hook_install(). - */ -function openid_test_install() { - module_load_include('inc', 'openid'); - // Generate a MAC key (Message Authentication Code) used for signing messages. - // The variable is base64-encoded, because variables cannot contain non-UTF-8 - // data. - variable_set('openid_test_mac_key', base64_encode(_openid_get_bytes(20))); -} |