mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
Just merge all of the <title> tests into one
This commit is contained in:
parent
3ddafb2d7c
commit
df147c718c
@ -1,7 +0,0 @@
|
||||
#![crate_name = "foo"]
|
||||
|
||||
// @has foo/primitive.u8.html '//head/title' 'u8 - Rust'
|
||||
// @!has - '//head/title' 'foo'
|
||||
#[doc(primitive = "u8")]
|
||||
/// `u8` docs
|
||||
mod u8 {}
|
@ -1,6 +1,8 @@
|
||||
#![crate_name = "foo"]
|
||||
#![feature(doc_keyword)]
|
||||
|
||||
// tests for the html <title> element
|
||||
|
||||
// @has foo/index.html '//head/title' 'foo - Rust'
|
||||
|
||||
// @has foo/fn.widget_count.html '//head/title' 'widget_count in foo - Rust'
|
||||
@ -34,3 +36,9 @@ pub mod blah {
|
||||
// @has foo/keyword.continue.html '//head/title' 'continue - Rust'
|
||||
#[doc(keyword = "continue")]
|
||||
mod continue_keyword {}
|
||||
|
||||
// @has foo/primitive.u8.html '//head/title' 'u8 - Rust'
|
||||
// @!has - '//head/title' 'foo'
|
||||
#[doc(primitive = "u8")]
|
||||
/// `u8` docs
|
||||
mod u8 {}
|
Loading…
Reference in New Issue
Block a user