Skip to main content

apollo_router/plugin/test/
mod.rs

1//! Utilities which make it easy to test with [`crate::plugin`].
2
3mod mock;
4#[macro_use]
5mod service;
6mod broken;
7mod restricted;
8
9pub use mock::subgraph::MockSubgraph;
10pub use service::MockExecutionService;
11pub use service::MockHttpClientService;
12#[cfg(test)]
13pub(crate) use service::MockInternalHttpClientService;
14pub use service::MockRouterService;
15pub use service::MockSubgraphService;
16pub use service::MockSupergraphService;
17
18pub(crate) use self::mock::canned;