forked from holidays/definitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nerc.yaml
94 lines (93 loc) · 1.82 KB
/
nerc.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
# NERC holiday definitions for the Ruby Holiday gem.
#
# By Adam Strickland
# Source: www.nerc.com/docs/oc/rs/Additional_Off-peak_Days.doc
#
# Updated 2013-01-03.
---
months:
1:
- name: New Year's Day
regions: [nerc]
mday: 1
observed: to_monday_if_sunday(date)
5:
- name: Memorial Day
week: -1
regions: [nerc]
wday: 1
7:
- name: Independence Day
regions: [nerc]
mday: 4
observed: to_monday_if_sunday(date)
9:
- name: Labor Day
week: 1
regions: [nerc]
wday: 1
11:
- name: Thanksgiving
week: 4
regions: [nerc]
wday: 4
12:
- name: Christmas Day
regions: [nerc]
mday: 25
observed: to_monday_if_sunday(date)
tests:
- given:
date: '2013-01-01'
regions: ["nerc"]
options: ["observed"]
expect:
name: "New Year's Day"
- given:
date: '2017-01-02'
regions: ["nerc"]
options: ["observed"]
expect:
name: "New Year's Day"
- given:
date: '2013-05-27'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Memorial Day"
- given:
date: '2013-07-04'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Independence Day"
- given:
date: '2010-07-05'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Independence Day"
- given:
date: '2013-09-02'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Labor Day"
- given:
date: '2013-11-28'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Thanksgiving"
- given:
date: '2013-12-25'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Christmas Day"
- given:
date: '2011-12-26'
regions: ["nerc"]
options: ["observed"]
expect:
name: "Christmas Day"