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'
|
2018-09-10 09:27:21 +00:00
|
|
|
// @has foo/keyword.match.html '//span[@class="in-band"]' 'Keyword match'
|
2018-05-28 19:30:01 +00:00
|
|
|
// @has foo/keyword.match.html '//section[@id="main"]//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
|
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
|
|
|
|
|
|
|
// @has foo/keyword.foo.html '//section[@id="main"]//div[@class="docblock"]//p' 'hello'
|
|
|
|
#[doc(keyword = "foo")]
|
|
|
|
/// hello
|
|
|
|
mod bar {}
|