forked from holidays/definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
za.yaml
139 lines (138 loc) · 2.88 KB
/
za.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# South African holiday definitions for the Ruby Holiday gem.
#
# Updated: 2008-11-29.
# Sources:
# - http://en.wikipedia.org/wiki/Public_holidays_in_South_Africa
# - http://www.info.gov.za/aboutsa/holidays.htm
---
months:
0:
- name: Good Friday
regions: [za]
function: easter(year)
function_modifier: -2
- name: Family Day
regions: [za]
function: easter(year)
function_modifier: 1
1:
- name: New Year's Day
regions: [za]
mday: 1
observed: to_monday_if_sunday(date)
3:
- name: Human Rights Day
regions: [za]
mday: 21
observed: to_monday_if_sunday(date)
4:
- name: Freedom Day
regions: [za]
mday: 27
observed: to_monday_if_sunday(date)
5:
- name: Workers Day
regions: [za]
mday: 1
observed: to_monday_if_sunday(date)
6:
- name: Youth Day
regions: [za]
mday: 16
observed: to_monday_if_sunday(date)
8:
- name: National Women's Day
regions: [za]
mday: 9
observed: to_monday_if_sunday(date)
9:
- name: Heritage Day
regions: [za]
mday: 24
observed: to_monday_if_sunday(date)
12:
- name: Day of Reconciliation
regions: [za]
mday: 16
observed: to_monday_if_sunday(date)
- name: Christmas Day
regions: [za]
mday: 25
observed: to_monday_if_sunday(date)
- name: Day of Goodwill
regions: [za]
mday: 26
observed: to_weekday_if_boxing_weekend(date)
tests:
- given:
date: '2007-01-01'
regions: ["za"]
options: ["informal"]
expect:
name: "New Year's Day"
- given:
date: '2007-03-21'
regions: ["za"]
options: ["informal"]
expect:
name: "Human Rights Day"
- given:
date: '2007-04-06'
regions: ["za"]
options: ["informal"]
expect:
name: "Good Friday"
- given:
date: '2007-04-09'
regions: ["za"]
options: ["informal"]
expect:
name: "Family Day"
- given:
date: '2007-04-27'
regions: ["za"]
options: ["informal"]
expect:
name: "Freedom Day"
- given:
date: '2007-05-01'
regions: ["za"]
options: ["informal"]
expect:
name: "Workers Day"
- given:
date: '2007-06-16'
regions: ["za"]
options: ["informal"]
expect:
name: "Youth Day"
- given:
date: '2007-08-09'
regions: ["za"]
options: ["informal"]
expect:
name: "National Women's Day"
- given:
date: '2007-09-24'
regions: ["za"]
options: ["informal"]
expect:
name: "Heritage Day"
- given:
date: '2007-12-16'
regions: ["za"]
options: ["informal"]
expect:
name: "Day of Reconciliation"
- given:
date: '2007-12-25'
regions: ["za"]
options: ["informal"]
expect:
name: "Christmas Day"
- given:
date: '2007-12-26'
regions: ["za"]
options: ["informal"]
expect:
name: "Day of Goodwill"