github.com/bingoohuang/gg@v0.0.0-20240325092523-45da7dee9335/pkg/timex/javafmt_test.go (about)

     1  package timex
     2  
     3  import (
     4  	"strings"
     5  	"testing"
     6  	"time"
     7  
     8  	"github.com/stretchr/testify/assert"
     9  )
    10  
    11  func TestFormat(t *testing.T) {
    12  	s := FormatTime(time.Now(), "06yyyy-MM-dd")
    13  	assert.True(t, strings.HasPrefix(s, "06"))
    14  }