mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-10 17:19:56 +08:00
9 lines
114 B
Go
9 lines
114 B
Go
|
package duration
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestDate(t *testing.T) {
|
||
|
res, _ := ParseDuration("15h2m10s")
|
||
|
_ = res
|
||
|
}
|