pulzr 0.2.2

A http load testing tool for performance testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::common::get_free_port;

#[tokio::test]
async fn test_websocket_port_allocation() {
    let port = get_free_port();
    assert!(port > 0);
    // Port is valid (u16 guarantees this)
}

// Note: More comprehensive WebSocket tests would require running the actual WebSocket server
// These are basic structural tests to ensure the test infrastructure works