e2e_tests/lib.rs
1//! End-to-End Tests for Privacy Pool
2//!
3//! This crate bridges the gap between:
4//! - The `circuits` crate that generates Groth16 proofs (and it employs std)
5//! - The `contracts` crate with the Pool contract that verifies the proofs (and
6//! it doesn't employ std)
7
8#[cfg(test)]
9mod tests;