From cec6d90bd536a804ba669f2237aa16857e8e407a Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 9 Oct 2017 13:31:57 +0200 Subject: Add another testcase for adding months over year-borders --- src/timetype.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/timetype.rs b/src/timetype.rs index e8df4c8..7832d85 100644 --- a/src/timetype.rs +++ b/src/timetype.rs @@ -2271,6 +2271,13 @@ mod moment_plus_amount_tests { amount = TT::months(78); expected = NaiveDate::from_ymd(2006, 7, 1).and_hms(0, 0, 0); } + + generate_test_moment_plus_amount! { + name = test_moment_plus_more_than_one_year_in_months_4; + base = NaiveDate::from_ymd(2000,10,31).and_hms(0, 0, 0); + amount = TT::months(4); + expected = NaiveDate::from_ymd(2001, 3, 1).and_hms(0, 0, 0); + } } #[cfg(test)] -- cgit v1.2.3 From 0c33cb7ac61ba3764d80a0b7f5be356dcc2e1630 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 9 Oct 2017 13:31:57 +0200 Subject: Add another testcase for adding months over year-borders --- src/timetype.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/timetype.rs b/src/timetype.rs index 7832d85..c7fa0d5 100644 --- a/src/timetype.rs +++ b/src/timetype.rs @@ -2278,6 +2278,20 @@ mod moment_plus_amount_tests { amount = TT::months(4); expected = NaiveDate::from_ymd(2001, 3, 1).and_hms(0, 0, 0); } + + generate_test_moment_plus_amount! { + name = test_moment_plus_more_than_one_year_in_months_5; + base = NaiveDate::from_ymd(2000,10,31).and_hms(0, 0, 0); + amount = TT::months(5); + expected = NaiveDate::from_ymd(2001, 4, 1).and_hms(0, 0, 0); + } + + generate_test_moment_plus_amount! { + name = test_moment_plus_more_than_one_year_in_months_6; + base = NaiveDate::from_ymd(2000,10,31).and_hms(0, 0, 0); + amount = TT::months(4) + TT::months(1); + expected = NaiveDate::from_ymd(2001, 4, 1).and_hms(0, 0, 0); + } } #[cfg(test)] -- cgit v1.2.3