My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/development/libs/barrel/src/tests/mod.rs

13 lines
202 B

//! A unit testing module for barrel
// We can always trust these tests 👍
mod common;
#[cfg(feature = "mysql")]
mod mysql;
#[cfg(feature = "pg")]
mod pg;
#[cfg(feature = "sqlite3")]
mod sqlite3;