MeiliSearch/meilisearch-http/tests/integration.rs

18 lines
423 B
Rust
Raw Normal View History

mod auth;
2021-02-18 19:50:52 +01:00
mod common;
mod dashboard;
2021-03-15 18:11:10 +01:00
mod documents;
2022-04-28 10:48:57 +02:00
mod dumps;
2021-02-18 19:50:52 +01:00
mod index;
2021-02-18 22:10:50 +01:00
mod search;
mod settings;
2021-03-24 11:03:01 +01:00
mod snapshot;
2021-03-15 19:08:19 +01:00
mod stats;
mod tasks;
2021-02-18 20:44:33 +01:00
// Tests are isolated by features in different modules to allow better readability, test
// targetability, and improved incremental compilation times.
//
// All the integration tests live in the same root module so only one test executable is generated,
// thus improving linking time.