mirror of
https://github.com/mii443/rust-genai.git
synced 2025-08-22 16:25:27 +00:00
21 lines
378 B
Rust
21 lines
378 B
Rust
//! Some support utilities for the tests
|
|
//! Note: Must be imported in each test file
|
|
|
|
#![allow(unused)] // For test support
|
|
|
|
// region: --- Modules
|
|
|
|
mod asserts;
|
|
mod helpers;
|
|
mod seeders;
|
|
|
|
pub use asserts::*;
|
|
pub use helpers::*;
|
|
pub use seeders::*;
|
|
|
|
pub mod common_tests;
|
|
|
|
pub type Result<T> = core::result::Result<T, Box<dyn std::error::Error>>;
|
|
|
|
// endregion: --- Modules
|