damock 0.1.2

Derivable data mocking for tests
Documentation
1
2
3
4
5
6
7
8
9
#[derive(damock::Mock)]
enum Foo {
    #[mock]
    Bar,
    #[mock]
    Baz,
}

fn main() {}