blob: b5077d3e3cd4e50b34421873935176b947956e58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Common test utilities
#![allow(dead_code)] // Test helpers may not be used in all test configurations
#![allow(unused_imports)] // Re-exports may not be used in all test configurations
pub mod git_server;
pub mod mock_relay;
pub mod purgatory_helpers;
pub mod relay;
pub mod sync_helpers;
pub use git_server::{SimpleGitServer, SmartGitServer};
pub use mock_relay::MockRelay;
pub use purgatory_helpers::*;
pub use relay::TestRelay;
pub use sync_helpers::*;
|