github.com/kubeshop/testkube@v1.17.23/pkg/git/checkout_test.go (about)

     1  package git
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestCheckOut(t *testing.T) {
    10  	t.Skip("TODO implement me")
    11  
    12  	repo := "https://github.com/cirosantilli/test-git-partial-clone-big-small"
    13  
    14  	dir, err := PartialCheckout(repo, "", "small", "master", "", "")
    15  	t.Logf("partial repo checkedout to dir: %s", dir)
    16  	assert.NoError(t, err)
    17  	t.Fail()
    18  }