Files
avo/examples/geohash/geohash_test.go

14 lines
222 B
Go
Raw Normal View History

package geohash
import (
"testing"
)
//go:generate go run asm.go -out geohash.s -stubs stub.go
func TestEncodeIntMountEverest(t *testing.T) {
if EncodeInt(27.988056, 86.925278) != 0xceb7f254240fd612 {
t.Fail()
}
}