Solved gigasecond
This commit is contained in:
parent
01286a3ea3
commit
8546b8cd77
2 changed files with 7 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
extern crate chrono;
|
||||
use chrono::UTC;
|
||||
use chrono::*;
|
||||
|
||||
pub fn after(input_date: UTC) -> UTC {
|
||||
let UTC: lived_for_date = input_date + Duration::seconds(1_000_000_000);
|
||||
pub fn after(input_date: DateTime<UTC>) -> DateTime<UTC> {
|
||||
let lived_for_date = input_date + Duration::seconds(1_000_000_000);
|
||||
return lived_for_date;
|
||||
}
|
||||
|
|
|
@ -22,28 +22,28 @@ fn test_date() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
// #[ignore]
|
||||
fn test_another_date() {
|
||||
let start_date = UTC.ymd(1977, 6, 13).and_hms(0,0,0);
|
||||
assert_eq!(gigasecond::after(start_date), UTC.ymd(2009, 2, 19).and_hms(1,46,40));
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
// #[ignore]
|
||||
fn test_third_date() {
|
||||
let start_date = UTC.ymd(1959, 7, 19).and_hms(0,0,0);
|
||||
assert_eq!(gigasecond::after(start_date), UTC.ymd(1991, 3, 27).and_hms(1,46,40));
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
// #[ignore]
|
||||
fn test_datetime() {
|
||||
let start_date = UTC.ymd(2015, 1, 24).and_hms(22,0,0);
|
||||
assert_eq!(gigasecond::after(start_date), UTC.ymd(2046, 10, 2).and_hms(23,46,40));
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore]
|
||||
// #[ignore]
|
||||
fn test_another_datetime() {
|
||||
let start_date = UTC.ymd(2015, 1, 24).and_hms(23,59,59);
|
||||
assert_eq!(gigasecond::after(start_date), UTC.ymd(2046, 10, 3).and_hms(1,46,39));
|
||||
|
|
Loading…
Add table
Reference in a new issue