diff --git a/src/SUMMARY.md b/src/SUMMARY.md index c25a48e..aaf5fcf 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -8,6 +8,7 @@ - [Testing](./dev/golang/testing.md) - [Rust](./dev/rust/main.md) - [serde](./dev/rust/serde.md) + - [Testing](./dev/rust/testing.md) - [Web](./dev/web/main.md) - [front](./dev/web/front/main.md) - [babel and babel-preset-stage-2](./dev/web/front/babel-preset-stage-2.md) diff --git a/src/dev/rust/testing.md b/src/dev/rust/testing.md new file mode 100644 index 0000000..e1fcdd3 --- /dev/null +++ b/src/dev/rust/testing.md @@ -0,0 +1,9 @@ +# Testing + +## `Cargo test` and `println!` + +To see stdout when using cargo run (kudos CobaltVelvet) + +```shell +cargo run -- --nocapture +```