omry_integration/lib.rs
1//! Common functionality for integration tests in this and other crates.
2
3/// Helper functions for integration tests.
4pub mod helpers;
5
6pub mod containers;
7
8/// Module with functions to create and interact with a temporary database for tests.
9pub mod db;
10
11/// Module with functionality for setting up a test Typesense container.
12pub mod typesense;
13
14/// Module with functions to create test containers for flora-server.
15pub mod flora_image;
16
17/// Module with functions to create flora stack (currently, flora server and Typesense)
18/// as testcontainers, and functions to facilitate interacting with those in integration tests.
19pub mod flora_stack;