rust/tests/rustdoc/keyword.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
896 B
Rust
Raw Normal View History

2018-05-28 14:30:01 -05:00
#![crate_name = "foo"]
2021-10-30 10:44:50 -05:00
#![feature(rustdoc_internals)]
2018-06-02 17:45:49 -05:00
2018-05-28 14:30:01 -05:00
// @has foo/index.html '//h2[@id="keywords"]' 'Keywords'
// @has foo/index.html '//a[@href="keyword.match.html"]' 'match'
2021-05-03 14:47:32 -05:00
// @has foo/index.html '//div[@class="sidebar-elems"]//li/a' 'Keywords'
// @has foo/index.html '//div[@class="sidebar-elems"]//li/a/@href' '#keywords'
2018-05-28 14:30:01 -05:00
// @has foo/keyword.match.html '//a[@class="keyword"]' 'match'
// @has foo/keyword.match.html '//h1' 'Keyword match'
2021-11-29 10:14:05 -06:00
// @has foo/keyword.match.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'this is a test!'
2019-01-31 08:42:45 -06:00
// @has foo/index.html '//a/@href' '../foo/index.html'
2018-06-02 17:48:17 -05:00
// @!has foo/foo/index.html
// @!has-dir foo/foo
// @!has foo/index.html '//span' '🔒'
2018-05-28 14:30:01 -05:00
#[doc(keyword = "match")]
/// this is a test!
mod foo{}
2021-11-29 10:14:05 -06:00
// @has foo/keyword.foo.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'hello'
#[doc(keyword = "foo")]
/// hello
mod bar {}