23 lines
1.3 KiB
Rust
23 lines
1.3 KiB
Rust
//! Tests for print page.
|
|
|
|
use crate::prelude::*;
|
|
|
|
// Tests relative links from the print page.
|
|
#[test]
|
|
fn relative_links() {
|
|
BookTest::from_dir("print/relative_links")
|
|
.check_main_file("book/print.html",
|
|
str![[r##"
|
|
<h1 id="first-chapter"><a class="header" href="#first-chapter">First Chapter</a></h1>
|
|
<div style="break-before: page; page-break-before: always;"></div><h1 id="first-nested"><a class="header" href="#first-nested">First Nested</a></h1>
|
|
<div style="break-before: page; page-break-before: always;"></div><h1 id="testing-relative-links-for-the-print-page"><a class="header" href="#testing-relative-links-for-the-print-page">Testing relative links for the print page</a></h1>
|
|
<p>When we link to <a href="second/../first/nested.html">the first section</a>, it should work on
|
|
both the print page and the non-print page.</p>
|
|
<p>A <a href="second/nested.html#some-section">fragment link</a> should work.</p>
|
|
<p>Link <a href="second/../../std/foo/bar.html">outside</a>.</p>
|
|
<p><img src="second/../images/picture.png" alt="Some image" /></p>
|
|
<p><a href="second/../first/markdown.html">HTML Link</a></p>
|
|
<img src="second/../images/picture.png" alt="raw html">
|
|
<h2 id="some-section"><a class="header" href="#some-section">Some section</a></h2>
|
|
"##]]);
|
|
}
|