18 lines
552 B
Rust
18 lines
552 B
Rust
use asynchronous_codec::{FramedRead, LinesCodec};
|
|
use futures::io::Cursor;
|
|
use futures::{executor, TryStreamExt};
|
|
|
|
#[test]
|
|
fn it_works() {
|
|
let buf = "Hello\nWorld\nError".to_owned();
|
|
let cur = Cursor::new(buf);
|
|
|
|
let mut framed = FramedRead::new(cur, LinesCodec {});
|
|
let next = executor::block_on(framed.try_next()).unwrap().unwrap();
|
|
assert_eq!(next, "Hello\n");
|
|
let next = executor::block_on(framed.try_next()).unwrap().unwrap();
|
|
assert_eq!(next, "World\n");
|
|
|
|
assert!(executor::block_on(framed.try_next()).is_err());
|
|
}
|