malvin 0.2.5

Non-interactive research and coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::acp::{IterableClosedStream, iterable_closed_stream_from_buffer};

#[test]
fn kiss_cov_iterable_closed_stream_from_buffer_kinds() {
    assert_eq!(
        iterable_closed_stream_from_buffer("WritableIterable is closed"),
        Some(IterableClosedStream::Writable)
    );
    assert_eq!(
        iterable_closed_stream_from_buffer("ReadableIterable is closed"),
        Some(IterableClosedStream::Readable)
    );
}