Tests that the "add to shortcut" link changes to "remove shortcut".
function testShortcutQuickLink() {
theme_enable(array(
'seven',
));
variable_set('admin_theme', 'seven');
variable_set('node_admin_theme', TRUE);
$this
->drupalGet($this->set->links[0]['link_path']);
$this
->assertRaw(t('Remove from %title shortcuts', array(
'%title' => $this->set->title,
)), '"Add to shortcuts" link properly switched to "Remove from shortcuts".');
}