Merge pull request #350 from aquacash5/redundant-tests

Remove redundant tests
This commit is contained in:
Plecra 2023-05-08 21:25:44 +01:00 committed by GitHub
commit b76b259ed0
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -555,27 +555,6 @@ mod test {
#[cfg(feature = "time")] #[cfg(feature = "time")]
use time::{format_description::well_known::Rfc3339, OffsetDateTime}; use time::{format_description::well_known::Rfc3339, OffsetDateTime};
#[cfg(feature = "time")]
#[test]
fn datetime_from_time_bounds() {
use std::convert::TryFrom;
use super::DateTime;
use time::macros::datetime;
// 1979-12-31 23:59:59
assert!(DateTime::try_from(datetime!(1979-12-31 23:59:59 UTC)).is_err());
// 1980-01-01 00:00:00
assert!(DateTime::try_from(datetime!(1980-01-01 00:00:00 UTC)).is_ok());
// 2107-12-31 23:59:59
assert!(DateTime::try_from(datetime!(2107-12-31 23:59:59 UTC)).is_ok());
// 2108-01-01 00:00:00
assert!(DateTime::try_from(datetime!(2108-01-01 00:00:00 UTC)).is_err());
}
#[cfg(feature = "time")] #[cfg(feature = "time")]
#[test] #[test]
fn datetime_try_from_bounds() { fn datetime_try_from_bounds() {