- archive/tests/mod.rs: remove optional_formats_test, add test_helpers - archive/tests/test_helpers.rs: update zip/flate2/tar crate APIs - archive/tests/core_formats_test.rs: restructure helper modules - archive/processor.rs: add modified_time field, use actual_ratio() - ssh_server/cipher.rs: add iv_ctos/iv_stoc to SessionKeys tests - ssh_server/crypto.rs: make client_kex/server_kex mutable - ssh_server/sshbuf.rs: fix mutable borrow conflict in test Test result: 123 passed, 12 failed (assertion failures)
16 lines
286 B
Rust
16 lines
286 B
Rust
// Archive Tests - Phase 1 Test Framework
|
|
|
|
pub mod core_formats_test;
|
|
pub mod integration_test;
|
|
pub mod test_helpers;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_module_structure() {
|
|
// Test that all test modules exist
|
|
assert!(true);
|
|
}
|
|
} |