mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-04-28 11:30:15 +00:00
16 lines
326 B
Go
16 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)
|
|
}
|
|
}
|