dbnexus 0.3.1

An enterprise-grade database abstraction layer for Rust with built-in permission control and connection pooling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2026 Kirky.X
// Licensed under MIT License

#[path = "../../common/mod.rs"]
mod common;

#[tokio::test]
async fn test_multi_database_pool() {
    let (pool, _temp_dir) = common::create_test_pool().await.expect("Failed");
    let _session = pool.get_session("admin").await.expect("Failed");
    let status = pool.status();
    assert!(status.total >= 1);
}