reifydb_engine/run_tests/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Engine-side runner for CREATE TEST / RUN TESTS. Tests execute inside the same transaction as the admin
5//! command that launched them, so their side effects live and die with that outer transaction.
6
7pub mod result;
8pub(crate) mod run;