fixture_rs
Create default fixtures for your types
This crates exposes a simple fixture Trait
wich can be automaticaly derived
You can then call fixture() to use it in your tests
Implementation
You need to implement it manually for your value object such as
Limitations
Unfortunatly due to Rust orphan rules,
you can't implement the Fixture trait on primitive types nor any forein types

This means that you need to wrap the primitive types, or any foreign struct. Which means that this crate is particulary usefull when enforcing type driven development