mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-20 18:04:19 +01:00
17 lines
310 B
Rust
17 lines
310 B
Rust
mod test_cdc;
|
|
mod test_function_rowid;
|
|
mod test_wal_api;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use tracing_subscriber::EnvFilter;
|
|
|
|
#[ctor::ctor]
|
|
fn init() {
|
|
tracing_subscriber::fmt()
|
|
.with_env_filter(EnvFilter::from_default_env())
|
|
.with_ansi(false)
|
|
.init();
|
|
}
|
|
}
|