Scratched a Rust itch with an experimental new crate `test_stubs`. I have traits with lots of methods. "Proper" code should implement all methods, but test code need not. `test_stubs` means that test code doesn't have to manually create `todo!()` methods.
This has saved me 950LoC in one Rust program alone. Comments welcome -- I definitely consider this experimental right now! https://github.com/ykjit/test_stubs






