mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 08:32:40 +08:00
11 lines
137 B
Go
11 lines
137 B
Go
package dateconv
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestParseDuration(t *testing.T) {
|
|
t.Log(ParseDuration(""))
|
|
t.Log(ParseDuration("abc"))
|
|
}
|