-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime_test.go
56 lines (52 loc) · 966 Bytes
/
time_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
package pretty_test
import (
"time"
. "github.com/pierrre/pretty"
)
var testTime = time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC)
func init() {
addTestCasesPrefix("Time", []*testCase{
{
name: "Default",
value: testTime,
},
{
name: "Zero",
value: time.Time{},
ignoreBenchmark: true,
},
{
name: "Unexported",
value: testUnexported{
v: testTime,
},
configure: func(vw *CommonValueWriter) {
vw.CanInterface = nil
},
ignoreBenchmark: true,
},
{
name: "UnexportedCanInterface",
value: testUnexported{
v: &testTime,
},
ignoreBenchmark: true,
},
{
name: "Disabled",
value: testTime,
configure: func(vw *CommonValueWriter) {
vw.Time = nil
},
ignoreBenchmark: true,
},
{
name: "Not",
value: "test",
configure: func(vw *CommonValueWriter) {
vw.ValueWriters = ValueWriters{vw.Time}
},
ignoreBenchmark: true,
},
})
}