-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathssh_client_integration.rs
More file actions
28 lines (27 loc) · 989 Bytes
/
ssh_client_integration.rs
File metadata and controls
28 lines (27 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! SSH Client Integration Tests (Backwards Compatibility)
//!
//! This file provides backwards compatibility for the SSH client integration tests
//! that have been split into focused modules following project conventions.
//!
//! The tests are now organized in separate modules:
//! - `ssh_client::connectivity_tests` - SSH connectivity testing
//! - `ssh_client::command_execution_tests` - Remote command execution
//! - `ssh_client::configuration_tests` - Configuration validation
//!
//! All test utilities, constants, and helper functions are defined in the
//! `ssh_client::mod` module and re-exported for use across all test modules.
//!
//! # Running Tests
//!
//! Run all SSH integration tests:
//! ```bash
//! cargo test --test ssh_client_integration
//! ```
//!
//! Run specific test categories:
//! ```bash
//! cargo test ssh_client::connectivity_tests
//! cargo test ssh_client::command_execution_tests
//! cargo test ssh_client::configuration_tests
//! ```
mod ssh_client;