photoprism/internal/fsutil/hash_test.go

13 lines
213 B
Go

package fsutil
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestHash(t *testing.T) {
hash := Hash("_fixtures/test.jpg")
assert.Equal(t, "516cb1fefbfd9fa66f1db50b94503a480cee30db", hash)
}