-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Labels
Description
// Check previous, up, and next links.
if ($previous) {
$prev_link = '<a href="/node/' . $previous->nid . '" rel="prev" title="Go to previous page"><b>‹</b> ' . $previous->title . '</a>';
$this->assertRaw($prev_link, 'Previous page link found.');
}
if ($up) {
$up_link = '<a href="/node/' . $up->nid . '" title="Go to parent page">up</a>';
$this->assertRaw($up_link, 'Up page link found.');
}
if ($next) {
$next_link = '<a href="/node/' . $next->nid . '" rel="next" title="Go to next page">' . $next->title . ' <b>›</b></a>';
$this->assertRaw($next_link, 'Next page link found.');
}
Reactions are currently unavailable