my.calendar.holidays: cleanup + ci/stats + split off private data handling to https://github.com/karlicoss/hpi-personal-overlay

This commit is contained in:
Dima Gerasimov 2020-10-09 20:09:56 +01:00 committed by karlicoss
parent 1f9be2c236
commit bdb5dcd221
5 changed files with 40 additions and 69 deletions

6
tests/calendar.py Normal file
View file

@ -0,0 +1,6 @@
from my.calendar.holidays import is_holiday
def test() -> None:
assert is_holiday('20190101')
assert not is_holiday('20180601')