2018-05-28 19:30:01 +00:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
2021-10-30 15:44:50 +00:00
|
|
|
#![feature(rustdoc_internals)]
|
2018-06-02 22:45:49 +00:00
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/index.html '//h2[@id="keywords"]' 'Keywords'
|
|
|
|
//@ has foo/index.html '//a[@href="keyword.match.html"]' 'match'
|
|
|
|
//@ has foo/index.html '//div[@class="sidebar-elems"]//li/a' 'Keywords'
|
|
|
|
//@ has foo/index.html '//div[@class="sidebar-elems"]//li/a/@href' '#keywords'
|
|
|
|
//@ has foo/keyword.match.html '//h1' 'Keyword match'
|
|
|
|
//@ has foo/keyword.match.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'this is a test!'
|
|
|
|
//@ has foo/index.html '//a/@href' '../foo/index.html'
|
|
|
|
//@ !has foo/foo/index.html
|
|
|
|
//@ !has-dir foo/foo
|
|
|
|
//@ !has foo/index.html '//span' '🔒'
|
2018-05-28 19:30:01 +00:00
|
|
|
#[doc(keyword = "match")]
|
|
|
|
/// this is a test!
|
|
|
|
mod foo{}
|
2020-11-27 13:28:17 +00:00
|
|
|
|
2024-06-21 12:03:08 +00:00
|
|
|
//@ has foo/keyword.foo.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'hello'
|
2020-11-27 13:28:17 +00:00
|
|
|
#[doc(keyword = "foo")]
|
|
|
|
/// hello
|
|
|
|
mod bar {}
|