//! Per-test database for the e2e suites. //! //! The implementation lives in `picloud-test-support` so `manager-core`'s //! integration tests share one copy of this (subtle) template-clone logic rather //! than a third hand-rolled duplicate. See that crate's docs for WHY each test //! needs a private database — in short, the dispatcher's claim loops are global //! by design, so a test must not share a database with anything that runs them. #![allow(dead_code)] pub use picloud_test_support::test_pool;