damock 0.1.3

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

fn main() {
    compile_error!("")
}