Add test for prev/back arrows + examples across multiple files

This commit is contained in:
Will Crichton 2021-10-08 17:56:42 -07:00
parent f10dceeae2
commit 9e4958a3e6
4 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,21 @@
-include ../../run-make-fulldeps/tools.mk
OUTPUT_DIR := "$(TMPDIR)/rustdoc"
all: $(TMPDIR)/ex.calls $(TMPDIR)/ex2.calls
$(RUSTDOC) src/lib.rs --crate-name foobar --crate-type lib --output $(OUTPUT_DIR) \
-Z unstable-options \
--with-examples $(TMPDIR)/ex.calls \
--with-examples $(TMPDIR)/ex2.calls
$(HTMLDOCCK) $(OUTPUT_DIR) src/lib.rs
$(TMPDIR)/%.calls: $(TMPDIR)/libfoobar.rmeta
$(RUSTDOC) examples/$*.rs --crate-name $* --crate-type bin --output $(OUTPUT_DIR) \
--extern foobar=$(TMPDIR)/libfoobar.rmeta \
-Z unstable-options \
--scrape-examples-output-path $@ \
--scrape-examples-target-crate foobar
$(TMPDIR)/lib%.rmeta: src/lib.rs
$(RUSTC) src/lib.rs --crate-name $* --crate-type lib --emit=metadata

View File

@ -0,0 +1,4 @@
fn main() {
foobar::ok();
foobar::ok();
}

View File

@ -0,0 +1,3 @@
fn main() {
foobar::ok();
}

View File

@ -0,0 +1,4 @@
// @has foobar/fn.ok.html '//*[@class="prev"]' ''
// @has foobar/fn.ok.html '//*[@class="more-scraped-examples"]' ''
pub fn ok() {}