rust/tests/rustdoc/unindent.rs

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

63 lines
1.7 KiB
Rust
Raw Permalink Normal View History

2020-10-26 22:01:57 +08:00
#![crate_name = "foo"]
//@ has foo/struct.Example.html
//@ matches - '//pre[@class="rust rust-example-rendered"]' \
2020-10-26 22:01:57 +08:00
// '(?m)let example = Example::new\(\)\n \.first\(\)\n \.second\(\)\n \.build\(\);\Z'
/// ```rust
/// let example = Example::new()
/// .first()
#[cfg_attr(not(feature = "one"), doc = " .second()")]
/// .build();
/// ```
pub struct Example;
//@ has foo/struct.F.html
//@ matches - '//pre[@class="rust rust-example-rendered"]' \
2020-10-26 22:01:57 +08:00
// '(?m)let example = Example::new\(\)\n \.first\(\)\n \.another\(\)\n \.build\(\);\Z'
///```rust
///let example = Example::new()
/// .first()
#[cfg_attr(not(feature = "one"), doc = " .another()")]
/// .build();
/// ```
pub struct F;
2020-10-29 18:43:07 +08:00
//@ has foo/struct.G.html
//@ matches - '//pre[@class="rust rust-example-rendered"]' \
2020-10-29 18:43:07 +08:00
// '(?m)let example = Example::new\(\)\n\.first\(\)\n \.another\(\)\n\.build\(\);\Z'
///```rust
///let example = Example::new()
///.first()
#[cfg_attr(not(feature = "one"), doc = " .another()")]
///.build();
///```
pub struct G;
//@ has foo/struct.H.html
//@ has - '//div[@class="docblock"]/p' 'no whitespace lol'
2020-10-29 18:43:07 +08:00
///no whitespace
#[doc = " lol"]
pub struct H;
//@ has foo/struct.I.html
//@ matches - '//pre[@class="rust rust-example-rendered"]' '(?m)4 whitespaces!\Z'
2020-10-29 18:43:07 +08:00
/// 4 whitespaces!
#[doc = "something"]
pub struct I;
//@ has foo/struct.J.html
//@ matches - '//div[@class="docblock"]/p' '(?m)a\nno whitespace\nJust some text.\Z'
2020-10-29 18:43:07 +08:00
///a
///no whitespace
2021-05-19 09:46:41 +08:00
#[doc = include_str!("unindent.md")]
2020-10-29 18:43:07 +08:00
pub struct J;
//@ has foo/struct.K.html
//@ matches - '//pre[@class="rust rust-example-rendered"]' '(?m)4 whitespaces!\Z'
2020-10-29 18:43:07 +08:00
///a
///
/// 4 whitespaces!
///
2021-05-19 09:46:41 +08:00
#[doc = include_str!("unindent.md")]
2020-10-29 18:43:07 +08:00
pub struct K;