damock 0.1.3

Derivable data mocking for tests
Documentation
  • Coverage
  • 100%
    3 out of 3 items documented1 out of 3 items with examples
  • Size
  • Source code size: 8.18 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 251.12 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • gibbz00/damock
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • gibbz00

Damock - Composable Data Mocking

ci_status codecov license crates_io docs_rs

use damock::Mock;

#[derive(Mock)]
struct Foo {
    bar: Bar,
    #[mock_default]
    baz: u8
}

#[derive(Mock)]
enum Bar {
    #[mock]
    A,
    B,
}

The former derive expands into:

// Derived mock implementations will
// always be conditionally compiled.
#[cfg(test)]
impl Mock for Foo {
    fn mock() -> Self {
        Self {
            bar: Mock::mock(),
            baz: Default::default(),
        }
    }
}

Toy application:

#[test]
fn computes_data() {
  let actual = compute(DataInput::mock());
  assert_eq!(DataOutput::mock(), actual);
}

The test compiler configuration may be overridden to something else like so:

#[derive(damock::Mock)]
#[mock(feature = "mocks")]
struct Foo;

This may come in use when Mock implementations need be shared between workspace crates.