summaryrefslogtreecommitdiff
path: root/modules/simpletest/tests/module_test.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/simpletest/tests/module_test.module')
-rw-r--r--modules/simpletest/tests/module_test.module11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/simpletest/tests/module_test.module b/modules/simpletest/tests/module_test.module
new file mode 100644
index 000000000..33dd979c1
--- /dev/null
+++ b/modules/simpletest/tests/module_test.module
@@ -0,0 +1,11 @@
+<?php
+// $Id$
+
+/**
+ * Implement hook_perm().
+ */
+function module_test_perm() {
+ return array(
+ 'module_test perm' => t('example perm for module_test module'),
+ );
+}