meilisearch/meilisearch-http/tests/integration.rs

13 lines
364 B
Rust
Raw Normal View History

2021-02-19 02:50:52 +08:00
mod common;
mod index;
2021-02-19 05:10:50 +08:00
mod search;
mod settings;
mod documents;
2021-02-24 02:15:42 +08:00
mod updates;
2021-02-19 03:44:33 +08: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.