This post is part of an ongoing series about tests in Rust:
-
Make it look like rainbows 🌈
What can we do to improve the reporting?
In the previous post, we ended up with the following report when …
This post is part of an ongoing series about tests in Rust:
Make it look like rainbows 🌈
In the previous post, we ended up with the following report when …
This post is part of an ongoing series about tests in Rust:
In the last post, we basically designed Assertion
so we would use it like this.
let some_value = String …
cargo-sonar
For a few days, I’ve been working on a small project called
cargo-sonar
and now is the time to
make it public.
Sonar [1] is a great tool for managing the quality of your software. Although, you might disagree if you’ve been using it 10 …
If you ever tried to return an Iterator
from a function and had difficulties
with it, this article might help.
Let’s introduce a context first. Imagine for a minute you’re trying to define a trait to list the colors of anything. For example, you could implement this …
This post is part of an ongoing series about tests in Rust:
Fluent assertions for numbers in Rust
Following up on my previous blog post about the testing ecosystem in Rust, I decided to try something on …
If you ever used VS Code to edit Rust source code, you might already know you can launch just the test you care about.
But I love too much Vim to convert to VSCode. And yes, I know there is a Vim plugin but these emulation plugins are never …
It has been about 6 years or so since I last wrote on this blog. Life happened I guess! But I once again have the envy to express myself: document things I experiment, publish experiences I do. Always about computer sciences, what else!
Well, quite a lot …
This post is part of an ongoing series about tests in Rust:
I’ve been working with Rust daily for a year now and generally, I have been very happy with …