We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a93f2a commit 362318aCopy full SHA for 362318a
tests/integration_tests.rs
@@ -97,7 +97,10 @@ fn run_single_test_no_filename() {
97
.arg("run")
98
.current_dir("tests/fixture/")
99
.assert()
100
- .code(1);
+ .code(2)
101
+ .stderr(predicates::str::contains(
102
+ "required arguments were not provided",
103
+ ));
104
}
105
106
#[test]
@@ -125,9 +128,9 @@ fn reset_no_exercise() {
125
128
.unwrap()
126
129
.arg("reset")
127
130
- .code(1)
131
132
.stderr(predicates::str::contains(
- "positional arguments not provided",
133
134
));
135
136
0 commit comments