diff --git a/core/modules/user/user.test b/core/modules/user/user.test
index 81d3e07..fb8ed51 100644
--- a/core/modules/user/user.test
+++ b/core/modules/user/user.test
@@ -1152,8 +1152,12 @@ class UserPermissionsTestCase extends DrupalWebTestCase {
     // Enable aggregator module and ensure the 'administer news feeds'
     // permission is assigned by default.
     $edit = array();
+    // enable book
+    $edit['modules[Core][book][enable]'] = TRUE;
     $edit['modules[Core][aggregator][enable]'] = TRUE;
     $this->drupalPost('admin/modules', $edit, t('Save configuration'));
+    // test general node permission for enabled book module
+    $this->assertTrue(user_access('edit own book content', $this->admin_user), t('The permission for node access was assigned to the administrator role.'));
     $this->assertTrue(user_access('administer news feeds', $this->admin_user), t('The permission was automatically assigned to the administrator role'));
   }
 
