git-lfs/git/git_test.go
2014-09-24 09:58:33 -04:00

12 lines
221 B
Go

package git
import (
"github.com/bmizerany/assert"
"testing"
)
func TestHashObject(t *testing.T) {
hash, _ := HashObject([]byte("hello, world\n"))
assert.Equal(t, "4b5fa63702dd96796042e92787f464e28f09f17d", hash)
}