@@ -5,7 +5,7 @@ that your tests are up to date and working.
5
5
6
6
The basic idea is this:
7
7
8
- ``` rust, ignore
8
+ ``` ignore
9
9
/// # Examples
10
10
///
11
11
/// ```
@@ -16,6 +16,19 @@ The basic idea is this:
16
16
The triple backticks start and end code blocks. If this were in a file named ` foo.rs ` ,
17
17
running ` rustdoc --test foo.rs ` will extract this example, and then run it as a test.
18
18
19
+ Please note that by default, if no language is set for the block code, ` rustdoc `
20
+ assumes it is ` Rust ` code. So the following:
21
+
22
+ ``` rust
23
+ let x = 5 ;
24
+ ```
25
+
26
+ is strictly equivalent to:
27
+
28
+ ```
29
+ let x = 5;
30
+ ```
31
+
19
32
There's some subtlety though! Read on for more details.
20
33
21
34
## Pre-processing examples
@@ -106,23 +119,23 @@ our source code:
106
119
```text
107
120
First , we set `x ` to five :
108
121
109
- ```rust
122
+ ```
110
123
let x = 5 ;
111
124
# let y = 6 ;
112
125
# println! (" {}" , x + y );
113
126
```
114
127
115
128
Next , we set `y ` to six :
116
129
117
- ```rust
130
+ ```
118
131
# let x = 5 ;
119
132
let y = 6 ;
120
133
# println! (" {}" , x + y );
121
134
```
122
135
123
136
Finally , we print the sum of `x ` and `y `:
124
137
125
- ```rust
138
+ ```
126
139
# let x = 5 ;
127
140
# let y = 6 ;
128
141
println! (" {}" , x + y );
@@ -136,7 +149,7 @@ explanation.
136
149
Another case where the use of ` # ` is handy is when you want to ignore
137
150
error handling. Lets say you want the following,
138
151
139
- ``` rust, ignore
152
+ ``` ignore
140
153
/// use std::io;
141
154
/// let mut input = String::new();
142
155
/// io::stdin().read_line(&mut input)?;
@@ -145,7 +158,7 @@ error handling. Lets say you want the following,
145
158
The problem is that ` ? ` returns a ` Result<T, E> ` and test functions
146
159
don't return anything so this will give a mismatched types error.
147
160
148
- ``` rust, ignore
161
+ ``` ignore
149
162
/// A doc test using ?
150
163
///
151
164
/// ```
@@ -179,7 +192,7 @@ Here’s an example of documenting a macro:
179
192
/// # }
180
193
/// ```
181
194
///
182
- /// ```rust, should_panic
195
+ /// ```should_panic
183
196
/// # #[macro_use] extern crate foo;
184
197
/// # fn main() {
185
198
/// panic_unless!(true == false, “I’m broken.”);
@@ -224,7 +237,7 @@ only shows the part you care about.
224
237
` should_panic ` tells ` rustdoc ` that the code should compile correctly, but
225
238
not actually pass as a test.
226
239
227
- ``` rust
240
+ ``` text
228
241
/// ```no_run
229
242
/// loop {
230
243
/// println!("Hello, world");
@@ -233,6 +246,18 @@ not actually pass as a test.
233
246
# fn foo() {}
234
247
```
235
248
249
+ ` compile_fail ` tells ` rustdoc ` that the compilation should fail. If it
250
+ compiles, then the test will fail. However please note that code failing
251
+ with the current Rust release may work in a future release, as new features
252
+ are added.
253
+
254
+ ``` text
255
+ /// ```compile_fail
256
+ /// let x = 5;
257
+ /// x += 2; // shouldn't compile!
258
+ /// ```
259
+ ```
260
+
236
261
The ` no_run ` attribute will compile your code, but not run it. This is
237
262
important for examples such as "Here's how to retrieve a web page,"
238
263
which you would want to ensure compiles, but might be run in a test
0 commit comments