From 086383ac9c27eeb3fb6a7c97d4eeb07492a69aa5 Mon Sep 17 00:00:00 2001 From: Vincent Song Date: Mon, 24 Apr 2017 16:40:42 +1000 Subject: [PATCH] fixed issue at CH14-03 L153 --- src/ch14-03-cargo-workspaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ch14-03-cargo-workspaces.md b/src/ch14-03-cargo-workspaces.md index a0a3aee..16166e7 100644 --- a/src/ch14-03-cargo-workspaces.md +++ b/src/ch14-03-cargo-workspaces.md @@ -150,7 +150,7 @@ running 0 tests test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured ``` -等等,零个测试?我们不是刚增加了一个吗?如果我们观察输出,就不难发现在工作空间中的`cargo test`只运行顶层 crate 的测试。为了运行其他 crate 的测试,需要使用`-p`参数来表明我们希望与逆行测试包的测试: +等等,零个测试?我们不是刚增加了一个吗?如果我们观察输出,就不难发现在工作空间中的`cargo test`只运行顶层 crate 的测试。为了运行其他 crate 的测试,需要使用`-p`参数来表明我们希望运行指定包的测试: ``` $ cargo test -p add-one