File tree Expand file tree Collapse file tree 9 files changed +335
-206
lines changed Expand file tree Collapse file tree 9 files changed +335
-206
lines changed Original file line number Diff line number Diff line change 11
11
matrix :
12
12
include :
13
13
- env : RUSTFMT
14
- rust : 1.29.1 # `stable`: Locking down for consistent behavior
14
+ rust : 1.31.0 # `stable`: Locking down for consistent behavior
15
15
install :
16
- - rustup component add rustfmt-preview
16
+ - rustup component add rustfmt
17
17
script :
18
18
- cargo fmt -- --check
19
19
- env : RUSTFLAGS="-D warnings"
20
- rust : 1.29.1 # `stable`: Locking down for consistent behavior
20
+ rust : 1.31.0 # `stable`: Locking down for consistent behavior
21
21
install :
22
22
script :
23
23
- cargo check --tests --all-features
24
24
- env : CLIPPY
25
- rust : nightly-2018-07-17
25
+ rust : 1.31.0 # `stable`: Locking down for consistent behavior
26
26
install :
27
- - rustup component add clippy-preview
27
+ - rustup component add clippy
28
28
script :
29
- - cargo clippy --all-features -- -D clippy
29
+ - cargo clippy --all-features
30
30
31
31
install :
32
32
- rustc -Vv
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ assert_cmd = "0.10"
21
21
22
22
Here's a trivial example:
23
23
24
- ``` rust
24
+ ``` rust,no_run
25
25
extern crate assert_cmd;
26
26
27
27
use std::process::Command;
28
28
use assert_cmd::prelude::*;
29
29
30
- Command :: main_binary ( )
30
+ Command::cargo_bin("bin_fixture" )
31
31
.unwrap()
32
32
.assert()
33
33
.success();
You can’t perform that action at this time.
0 commit comments