mirror of
https://github.com/status-im/consul.git
synced 2025-02-16 15:47:21 +00:00
15 lines
237 B
Go
15 lines
237 B
Go
|
package agent
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestUUIDToUint64(t *testing.T) {
|
||
|
inp := "cb9a81ad-fff6-52ac-92a7-5f70687805ec"
|
||
|
|
||
|
// Output value was computed using python
|
||
|
if uuidToUint64(inp) != 6430540886266763072 {
|
||
|
t.Fatalf("bad")
|
||
|
}
|
||
|
}
|