You are here

function simpletest_perm in SimpleTest 5

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

Implementation of hook_perm().

File

./simpletest.module, line 52

Code

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