Skip to content

Commit

Permalink
add windows count test
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnr committed Aug 9, 2021
1 parent 7f3dc04 commit 24aa45c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions library/core/tests/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -739,6 +739,10 @@ fn test_array_windows_count() {
let v3: &[i32] = &[];
let c3 = v3.array_windows::<2>();
assert_eq!(c3.count(), 0);

let v4: &[()] = &[(); usize::MAX];
let c4 = v4.array_windows::<1>();
assert_eq!(c4.count(), usize::MAX);
}

#[test]
Expand Down Expand Up @@ -1050,6 +1054,10 @@ fn test_windows_count() {
let v3: &[i32] = &[];
let c3 = v3.windows(2);
assert_eq!(c3.count(), 0);

let v4 = &[(); usize::MAX];
let c4 = v4.windows(1);
assert_eq!(c4.count(), usize::MAX);
}

#[test]
Expand Down

0 comments on commit 24aa45c

Please sign in to comment.