github.com/stffabi/git-lfs@v2.3.5-0.20180214015214-8eeaa8d88902+incompatible/git/odb/pack/errors_test.go (about)

     1  package pack
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestUnsupportedVersionErr(t *testing.T) {
    10  	u := &UnsupportedVersionErr{Got: 3}
    11  
    12  	assert.Error(t, u, "git/odb/pack: unsupported version: 3")
    13  }