20 lines
583 B
Rust
20 lines
583 B
Rust
// SPDX-FileCopyrightText: Copyright (c) 2026 The SGLang Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//! Component-scope integration tests.
|
|
//!
|
|
//! Each submodule exercises a single library component (policy, registry,
|
|
//! discovery, health, tokenizer) via the crate's public API. None of these
|
|
//! tests spin up the full HTTP router; for those see `tests/proxy/`.
|
|
|
|
mod discovery;
|
|
mod health;
|
|
mod policies;
|
|
mod policies_reorg;
|
|
mod policies_reorg_cache_aware;
|
|
mod policies_reorg_load;
|
|
mod policies_reorg_power_of_two;
|
|
mod policies_reorg_session_aware;
|
|
mod tokenizer;
|
|
mod workers;
|