| Crates.io | typedb-test |
| lib.rs | typedb-test |
| version | 0.1.0 |
| created_at | 2025-09-17 21:22:54.205579+00 |
| updated_at | 2025-09-17 21:22:54.205579+00 |
| description | Test fixture for TypeDB, using googletest StaticFixture. |
| homepage | |
| repository | https://github.com/sevki/typedb-test |
| max_upload_size | |
| id | 1843912 |
| size | 231,650 |
Test fixture for TypeDB, using googletest StaticFixture.
#![cfg(test)]
use crate::{TypeDB, googletest::gtest};
#[tokio::test]
#[gtest]
async fn test_models(db: &&TypeDB) {
db.databases().all().await.unwrap();
}