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 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
2018-05-28 19:30:01 +00:00
// @has foo/index.html '//h2[@id="keywords"]' 'Keywords'
// @has foo/index.html '//a[@href="keyword.match.html"]' 'match'
2021-05-03 19:47:32 +00: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 19:30:01 +00:00
// @has foo/keyword.match.html '//a[@class="keyword"]' 'match'
// @has foo/keyword.match.html '//h1' 'Keyword match'
2021-11-29 16:14:05 +00:00
// @has foo/keyword.match.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'this is a test!'
2019-01-31 14:42:45 +00:00
// @has foo/index.html '//a/@href' '../foo/index.html'
2018-06-02 22:48:17 +00:00
// @!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{}
2021-11-29 16:14:05 +00:00
// @has foo/keyword.foo.html '//section[@id="main-content"]//div[@class="docblock"]//p' 'hello'
#[doc(keyword = "foo")]
/// hello
mod bar {}