diff options
Diffstat (limited to 'modules/node/tests')
-rw-r--r-- | modules/node/tests/node_access_test.module | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/node/tests/node_access_test.module b/modules/node/tests/node_access_test.module index f2eca2e42..813bf929b 100644 --- a/modules/node/tests/node_access_test.module +++ b/modules/node/tests/node_access_test.module @@ -15,7 +15,7 @@ function node_access_test_node_grants($account, $op) { // First grant a grant to the author for own content. $grants['node_access_test_author'] = array($account->uid); if ($op == 'view' && user_access('node test view', $account)) { - $grants['node_access_test'] = array(8888); + $grants['node_access_test'] = array(8888, 8889); } if ($op == 'view' && $account->uid == variable_get('node_test_node_access_all_uid', 0)) { $grants['node_access_all'] = array(0); @@ -38,6 +38,14 @@ function node_access_test_node_access_records($node) { 'grant_delete' => 0, 'priority' => 0, ); + $grants[] = array( + 'realm' => 'node_access_test', + 'gid' => 8889, + 'grant_view' => 1, + 'grant_update' => 0, + 'grant_delete' => 0, + 'priority' => 0, + ); // For the author realm, the GID is equivalent to a UID, which // means there are many many groups of just 1 user. $grants[] = array( |