blob: 98df69c83b6ac11652343db24e4c85c4c486e201 (
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
|
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);
}
|