go-utils/utils/date/formater_test.go

12 lines
179 B
Go
Raw Normal View History

2017-07-11 09:33:03 +00:00
package date
import (
"testing"
2018-01-24 08:37:57 +00:00
"github.com/ehlxr/go-utils/utils/log"
2017-07-11 09:33:03 +00:00
)
func TestDateFormater(t *testing.T) {
log.Infof("now tims is %s", Formater("yyyy-MM-dd HH:mm:ss"))
}