jldb/mdb/functions_test.go
2023-10-13 11:43:27 +02:00

13 lines
179 B
Go

package mdb
import (
"testing"
)
func TestPageFilePath(t *testing.T) {
pageFilePath := pageFilePath("/tmp")
if pageFilePath != "/tmp/pagefile" {
t.Fatal(pageFilePath)
}
}