diff --git a/modules/menu/menu.test b/modules/menu/menu.test
index 95e0ee9..f35f6fd 100644
--- a/modules/menu/menu.test
+++ b/modules/menu/menu.test
@@ -703,6 +703,62 @@ class MenuNodeTestCase extends DrupalWebTestCase {
   }
 
   /**
+   * Test creating, editing, deleting administration menu links via node form.
+   */
+  function testMenuLoadObjects() {
+    // Enable Administration menu as available menu.
+    $edit = array(
+      'menu_options[management]' => 1,
+    );
+    $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
+    $admin_menu_link = db_select('menu_links', 'ml')
+      ->condition('link_path', 'admin')
+      ->fields('ml', array('mlid'))
+      ->execute()
+      ->fetchField();
+    // Change default parent item to Navigation menu, so we can assert more
+    // easily.
+    $edit = array(
+      'menu_parent' => 'management:' . $admin_menu_link,
+    );
+    $this->drupalPost('admin/structure/types/manage/page', $edit, t('Save content type'));
+
+    // Create a node.
+    $node_title = 'A really long node title that would not suit the menu';
+    $language = LANGUAGE_NONE;
+    $edit = array(
+      "title" => $node_title,
+      "body[$language][0][value]" => $this->randomString(),
+      'menu[enabled]' => 1,
+      'menu[link_title]' => 'Short link',
+    );
+    $this->drupalPost('node/add/page', $edit, t('Save'));
+    // Place the admin menu in the sidebar.
+    $block = array(
+      'status' => 1,
+      'weight' => 0,
+      'region' => 'sidebar_first',
+      'pages' => '',
+      'cache' => -1,
+    );
+    db_merge('block')->
+      key(array(
+        'module' => 'system',
+        'delta' => 'management',
+        'theme' => 'bartik',
+      ))->fields(
+      $block
+    )->execute();
+
+    $this->drupalLogout();
+    drupal_flush_all_caches();
+    $this->drupalLogin($this->drupalCreateUser(array('access administration pages')));
+    $this->drupalGet('admin');
+    $this->assertLink('Short link');
+    $this->assertNoLink('A really long node title that would not suit the menu');
+  }
+
+  /**
    * Asserts that a select option in the current page does not exist.
    *
    * @param $id
