mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-02 17:31:14 -05:00
notify-136 change financial year starting in april to calendar year (#278)
Co-authored-by: Kenneth Kehl <@kkehl@flexion.us>
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
from freezegun import freeze_time
|
||||
|
||||
from app.dao.date_util import get_current_financial_year_start_year
|
||||
from app.dao.date_util import get_current_calendar_year_start_year
|
||||
|
||||
|
||||
# see get_financial_year for conversion of financial years.
|
||||
@freeze_time("2017-03-31 23:59:59.999999")
|
||||
def test_get_current_financial_year_start_year_before_march():
|
||||
current_fy = get_current_financial_year_start_year()
|
||||
assert current_fy == 2016
|
||||
def test_get_current_calendar_year_start_year_before_march():
|
||||
current_fy = get_current_calendar_year_start_year()
|
||||
assert current_fy == 2017
|
||||
|
||||
|
||||
@freeze_time("2017-04-01 04:00:00.000000")
|
||||
def test_get_current_financial_year_start_year_after_april():
|
||||
current_fy = get_current_financial_year_start_year()
|
||||
def test_get_current_calendar_year_start_year_after_april():
|
||||
current_fy = get_current_calendar_year_start_year()
|
||||
assert current_fy == 2017
|
||||
|
||||
Reference in New Issue
Block a user