app/calendar/calendar_test.go

17 lines
220 B
Go
Raw Normal View History

2021-12-24 08:56:16 +00:00
package calendar
import (
"fmt"
"testing"
"time"
)
func TestOffsetStr(t *testing.T) {
fmt.Println(offsetStr(-28800))
fmt.Println(offsetStr(28800))
}
func TestT(t *testing.T) {
fmt.Println(icstime(time.Now()))
}