Can I use this with Rust? #608
Replies: 1 comment 3 replies
-
From what i know from Rust, it does not (by default anyway) provide any functions like if you already use nodejs with your rust projects (like for semantic-release or husky or commitlint or something like that) and also use a CI system, then depending on the CI system you may have this library in a nodejs process running in the background, but if your CI does not support background jobs (like Github CI?) or just dont wanna have it running all the time, i would recommend to just use the download functionality of this library and manually start / stop the database, which can be directly called by using |
Beta Was this translation helpful? Give feedback.
-
Hi, I have previously used this in a nodejs project and liked how I could write unit tests that just got fake data from a fake db without me having to mock the mongo lib functions...
I am now working on a project using the rust-mongo-driver and am in need of something like this for those unit tests!!
Beta Was this translation helpful? Give feedback.
All reactions