-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime_zone_example_test.go
70 lines (53 loc) · 1.07 KB
/
time_zone_example_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
67
68
69
70
package tz_test
import (
"fmt"
"time"
_ "time/tzdata"
"github.com/min0625/tz"
)
func ExampleTimeZone() {
z, err := tz.LoadTimeZone("America/New_York")
if err != nil {
panic(err)
}
fmt.Println(z.String())
fmt.Println(time.Time{}.In(z.Location()).Location().String())
// Output:
// America/New_York
// America/New_York
}
func ExampleTimeZone_zeroValue() {
z, err := tz.LoadTimeZone("UTC")
if err != nil {
panic(err)
}
fmt.Println(z == tz.TimeZone{})
// Output:
// true
}
func ExampleTimeZone_Scan() {
var z tz.TimeZone
if err := z.Scan("America/New_York"); err != nil {
panic(err)
}
fmt.Println(time.Time{}.In(z.Location()).Location().String())
// Output:
// America/New_York
}
func ExampleTimeZone_Value() {
z, err := tz.LoadTimeZone("America/New_York")
if err != nil {
panic(err)
}
v, err := z.Value()
fmt.Printf("%v %T %v\n", v, v, err)
// Output:
// America/New_York string <nil>
}
func ExampleTimeZone_Value_zeroValue() {
var z tz.TimeZone
v, err := z.Value()
fmt.Printf("%v %T %v\n", v, v, err)
// Output:
// UTC string <nil>
}