mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-02-18 00:17:39 +01:00
17 lines
326 B
Go
17 lines
326 B
Go
package api
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rcourtman/pulse-go-rewrite/internal/config"
|
|
)
|
|
|
|
func TestGuestMetadataHandler_Reload(t *testing.T) {
|
|
mtp := config.NewMultiTenantPersistence(t.TempDir())
|
|
handler := NewGuestMetadataHandler(mtp)
|
|
|
|
if err := handler.Reload(); err != nil {
|
|
t.Fatalf("Reload error: %v", err)
|
|
}
|
|
}
|