1//! Tests for Zebra blocks 2 3#![allow(clippy::unwrap_in_result)] 4 5// TODO: generate should be rewritten as strategies 6#[cfg(any(test, feature = "bench", feature = "proptest-impl"))] 7pub mod generate; 8#[cfg(test)] 9mod preallocate; 10#[cfg(test)] 11mod prop; 12#[cfg(test)] 13mod vectors;