mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
811 B
23 lines
811 B
$ cargo test
|
|
Compiling limit-tracker v0.1.0 (file:///projects/limit-tracker)
|
|
Finished `test` profile [unoptimized + debuginfo] target(s) in 0.91s
|
|
Running unittests src/lib.rs (target/debug/deps/limit_tracker-e599811fa246dbde)
|
|
|
|
running 1 test
|
|
test tests::it_sends_an_over_75_percent_warning_message ... FAILED
|
|
|
|
failures:
|
|
|
|
---- tests::it_sends_an_over_75_percent_warning_message stdout ----
|
|
thread 'tests::it_sends_an_over_75_percent_warning_message' panicked at src/lib.rs:60:53:
|
|
already borrowed: BorrowMutError
|
|
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
|
|
|
|
|
|
failures:
|
|
tests::it_sends_an_over_75_percent_warning_message
|
|
|
|
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`
|