function simpletest_example_perm in Examples for Developers 6
Implementation of hook_perm().
Related topics
File
- simpletest_example/simpletest_example.module, line 42 
- An example of simpletest tests to accompany the tutorial at http://drupal.org/node/395012.
Code
function simpletest_example_perm() {
  return array(
    'create simpletest_example',
    'edit own simpletest_example',
  );
}