v0.2.7-pre.012-fix.001

This commit is contained in:
2026-08-23 09:55:34 +02:00
parent 628b4f12f2
commit 3b4d355537
3 changed files with 76 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
// file: crates/ksp-onchain-transport-lib/tests/release_completeness.rs
// version: 23
// version: 24
//! Release-level completeness canaries for staged HTTP and WebSocket Transport coverage.
@@ -766,6 +766,6 @@ fn release_v0_2_7_pre_012_http_inventory_remains_52_current_plus_14_historical()
let historical = ksp_onchain_transport_lib::historical_http_rpc_methods();
assert_eq!(current.len(), 52);
assert_eq!(historical.len(), 14);
assert!(current.iter().all(|descriptor| descriptor.runtime_status() == ksp_onchain_transport_lib::RpcRuntimeStatus::Supported));
assert!(historical.iter().all(|descriptor| descriptor.runtime_status() == ksp_onchain_transport_lib::RpcRuntimeStatus::Removed));
assert!(current.iter().all(|descriptor| return descriptor.runtime_status() == ksp_onchain_transport_lib::RpcRuntimeStatus::Supported));
assert!(historical.iter().all(|descriptor| return descriptor.runtime_status() == ksp_onchain_transport_lib::RpcRuntimeStatus::Removed));
}