forked from mirror/cast
Add "yyyy-MM-dd HH:mm:ss" string format
This commit is contained in:
parent
2580bc98dc
commit
24b6558033
|
@ -212,3 +212,10 @@ func TestToDuration(t *testing.T) {
|
|||
assert.Equal(t, v.expected, ToDuration(v.input))
|
||||
}
|
||||
}
|
||||
|
||||
func TestStringToDate(t *testing.T) {
|
||||
d := "2016-03-06 15:28:01"
|
||||
format := "2006-01-02 15:04:05"
|
||||
v, _ := time.Parse(format, d)
|
||||
assert.Equal(t, ToTime(d), v)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue