typedb-test 0.1.0

Test fixture for TypeDB, using googletest StaticFixture.
Documentation

typedb-test

Test fixture for TypeDB, using googletest StaticFixture.

Usage

#![cfg(test)]

use crate::{TypeDB, googletest::gtest};

#[tokio::test]
#[gtest]
async fn test_models(db: &&TypeDB) {
    db.databases().all().await.unwrap();
}