mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-02-02 23:38:41 +08:00
24 lines
674 B
Plaintext
24 lines
674 B
Plaintext
|
$ cargo test
|
||
|
Compiling minigrep v0.1.0 (file:///projects/minigrep)
|
||
|
Finished test [unoptimized + debuginfo] target(s) in 0.97s
|
||
|
Running target/debug/deps/minigrep-4672b652f7794785
|
||
|
|
||
|
running 1 test
|
||
|
test tests::one_result ... FAILED
|
||
|
|
||
|
failures:
|
||
|
|
||
|
---- tests::one_result stdout ----
|
||
|
thread 'main' panicked at 'assertion failed: `(left == right)`
|
||
|
left: `["safe, fast, productive."]`,
|
||
|
right: `[]`', src/lib.rs:44:9
|
||
|
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
||
|
|
||
|
|
||
|
failures:
|
||
|
tests::one_result
|
||
|
|
||
|
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
|
||
|
|
||
|
error: test failed, to rerun pass '--lib'
|