forked from go-shadow/moment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
strftime_parser_test.go
66 lines (36 loc) · 1.29 KB
/
strftime_parser_test.go
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
package moment
/*
import (
. "github.com/smartystreets/goconvey/convey"
"testing"
)
func TestStrftimeParser(t *testing.T) {
Convey("Given strftime year formats", t, func() {
Convey("It should generate the correct golang formats for years", nil)
})
Convey("Given strftime month formats", t, func() {
Convey("It should generate the correct golang formats for months", nil)
})
Convey("Given strftime day formats", t, func() {
Convey("It should generate the correct golang formats for days", nil)
})
Convey("Given strftime hour formats", t, func() {
Convey("It should generate the correct golang formats for hours", nil)
})
Convey("Given strftime minute formats", t, func() {
Convey("It should generate the correct golang formats for minutes", nil)
})
Convey("Given strftime second formats", t, func() {
Convey("It should generate the correct golang formats for seconds", nil)
})
Convey("Given strftime convenience formats", t, func() {
Convey("It should generate the correct convenience golang formats", nil)
})
Convey("Given strftime misc formats", t, func() {
Convey("It should generate the correct golang formats", nil)
})
Convey("Given a strftime moment format", t, func() {
Convey("It should generate the correct golang time format", nil)
})
}
*/