jldb/mdb/functions_test.go

13 lines
179 B
Go
Raw Normal View History

2023-10-13 09:43:27 +00:00
package mdb
import (
"testing"
)
func TestPageFilePath(t *testing.T) {
pageFilePath := pageFilePath("/tmp")
if pageFilePath != "/tmp/pagefile" {
t.Fatal(pageFilePath)
}
}