File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ fn it_works() {
82
82
```
83
83
84
84
` assert! ` is a macro provided by Rust which takes one argument: if the argument
85
- is ` true ` , nothing happens. If the argument is false, it ` panic! ` s. Let's run
85
+ is ` true ` , nothing happens. If the argument is ` false ` , it ` panic! ` s. Let's run
86
86
our tests again:
87
87
88
88
``` bash
@@ -289,7 +289,7 @@ running 0 tests
289
289
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured
290
290
```
291
291
292
- The ` --ignored ` argument is an argument to the test binary, and not to cargo ,
292
+ The ` --ignored ` argument is an argument to the test binary, and not to Cargo ,
293
293
which is why the command is ` cargo test -- --ignored ` .
294
294
295
295
# The ` tests ` module
@@ -367,7 +367,7 @@ It works!
367
367
The current convention is to use the ` tests ` module to hold your "unit-style"
368
368
tests. Anything that just tests one small bit of functionality makes sense to
369
369
go here. But what about "integration-style" tests instead? For that, we have
370
- the ` tests ` directory
370
+ the ` tests ` directory.
371
371
372
372
# The ` tests ` directory
373
373
You can’t perform that action at this time.
0 commit comments