From 4153c0491d5333ae69c2674eab4677e564d7605e Mon Sep 17 00:00:00 2001 From: Vojtech Kral Date: Mon, 5 Feb 2024 22:50:10 +0100 Subject: [PATCH] WIP --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5462fb6..7f5e73a 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ `cargo fixture` is a cargo extension that let's you surround `cargo test` with arbitrary Rust setup and teardown code. - + It can be used to run network servers that tests connect to, spin up docker containers, prepare test data, check for presence of programs,... or really anything that can be done from Rust code. Any provided resources can be released after `cargo test` finishes, whether manually, using RAII guards or closures.