mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
test: improve coverage in client builder and time types (#357)
This commit is contained in:
parent
1b3a530fb7
commit
33c8900172
2 changed files with 64 additions and 0 deletions
|
@ -227,9 +227,24 @@ mod tests {
|
|||
let m = Millis::from(Duration::from_secs(1));
|
||||
assert_eq!(m.0, 1000);
|
||||
|
||||
let m = Millis::from(Duration::from_secs(u64::MAX));
|
||||
assert_eq!(m.0, 2_147_483_648);
|
||||
|
||||
let m = Millis::from_secs(1);
|
||||
assert_eq!(m.0, 1000);
|
||||
|
||||
let m = Millis(0);
|
||||
assert_eq!(m.map(|m| m + Millis(1)), None);
|
||||
|
||||
let m = Millis(1);
|
||||
assert_eq!(m.map(|m| m + Millis(1)), Some(Millis(2)));
|
||||
|
||||
let s = Seconds::new(10);
|
||||
assert_eq!(s.0, 10);
|
||||
|
||||
let s = Seconds::checked_new(10);
|
||||
assert_eq!(s.0, 10);
|
||||
|
||||
let s = Seconds::checked_new(u16::MAX as usize + 10);
|
||||
assert_eq!(s.0, u16::MAX);
|
||||
|
||||
|
@ -247,5 +262,8 @@ mod tests {
|
|||
|
||||
assert_eq!(Seconds(0).map(|_| 1usize), None);
|
||||
assert_eq!(Seconds(2).map(|_| 1usize), Some(1));
|
||||
|
||||
let d = Duration::from(Seconds(100));
|
||||
assert_eq!(d.as_secs(), 100);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue