mirror of https://github.com/tidwall/tile38.git
11 lines
116 B
Go
11 lines
116 B
Go
|
package server
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestBSON(t *testing.T) {
|
||
|
id := bsonID()
|
||
|
if len(id) != 24 {
|
||
|
t.Fail()
|
||
|
}
|
||
|
}
|