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