File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -4706,6 +4706,7 @@ def _populate(self, year):
47064706 # Public holidays
47074707 self [date (year , JAN , 1 )] = "Nýársdagur"
47084708 self [easter (year ) - rd (days = 3 )] = "Skírdagur"
4709+ self [easter (year ) + rd (weekday = FR (- 1 ))] = "Föstudagurinn langi"
47094710 self [easter (year )] = "Páskadagur"
47104711 self [easter (year ) + rd (days = 1 )] = "Annar í páskum"
47114712 self [date (year , APR , 19 ) + rd (weekday = TH (+ 1 ))] = \
Original file line number Diff line number Diff line change @@ -5313,6 +5313,11 @@ def test_commerce_day(self):
53135313 "Frídagur verslunarmanna" )
53145314 self .assertIn (test_date , self .holidays )
53155315
5316+ def test_holy_friday (self ):
5317+ test_date = date (2019 , 4 , 19 )
5318+ self .assertEqual (self .holidays .get (test_date ), "Föstudagurinn langi" )
5319+ self .assertIn (test_date , self .holidays )
5320+
53165321
53175322class TestKenya (unittest .TestCase ):
53185323 def setUp (self ):
You can’t perform that action at this time.
0 commit comments