aboutsummaryrefslogtreecommitdiff
path: root/tests/io_window.rs
blob: 8cc41a30849cbc312262ea50df3dab3816f1ea63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![cfg(feature = "std")]
use futures::io::Window;

#[test]
fn set() {
    let mut buffer = Window::new(&[1, 2, 3]);
    buffer.set(..3);
    buffer.set(3..3);
    buffer.set(3..=2); // == 3..3
    buffer.set(0..2);

    assert_eq!(buffer.as_ref(), &[1, 2]);
}

#[test]
#[should_panic]
fn set_panic_out_of_bounds() {
    let mut buffer = Window::new(&[1, 2, 3]);
    buffer.set(2..4);
}

#[test]
#[should_panic]
fn set_panic_start_is_greater_than_end() {
    let mut buffer = Window::new(&[1, 2, 3]);
    buffer.set(3..2);
}