deboa-extras 0.0.9-beta.11

deboa extras (serialization, compression, websockets, streams, catchers (middleware) and sse support).
1
2
3
4
5
6
7
8
9
use crate::http::sse::event::ServerEvent;
use bytes::Bytes;

#[test]
fn test_parse_event() {
    let event = ServerEvent::parse(&Bytes::from("id: 1\n\ndata: 2\n\n")).unwrap();
    assert_eq!(event.id(), &Some("1".to_string()));
    assert_eq!(event.data(), &vec!["2".to_string()]);
}