Files
mautrix-telegram/pkg/gotd/session/storage_file_test.go
T
2025-06-27 20:03:37 -07:00

14 lines
209 B
Go

package session
import (
"path/filepath"
"testing"
)
func TestFileStorage(t *testing.T) {
dir := t.TempDir()
t.Run("Storage", testStorage(&FileStorage{
Path: filepath.Join(dir, "session.json"),
}))
}