You are here

function simpletest_perm in SimpleTest 6

Same name and namespace in other branches
  1. 5 simpletest.module \simpletest_perm()
  2. 6.2 simpletest.module \simpletest_perm()

Implementation of hook_perm().

File

./simpletest.module, line 51

Code

function simpletest_perm() {
  return array(
    'administer unit tests',
  );
}