Remove redundant instance manager tests

This commit is contained in:
2025-10-21 22:15:12 +02:00
parent 6afe120a0e
commit c44712e813
2 changed files with 0 additions and 95 deletions

View File

@@ -12,21 +12,6 @@ import (
"testing"
)
func TestNewInstanceManager(t *testing.T) {
mgr := createTestManager()
if mgr == nil {
t.Fatal("NewInstanceManager returned nil")
}
instances, err := mgr.ListInstances()
if err != nil {
t.Fatalf("ListInstances failed: %v", err)
}
if len(instances) != 0 {
t.Errorf("Expected empty instance list, got %d instances", len(instances))
}
}
func TestManager_PersistsAndLoadsInstances(t *testing.T) {
tempDir := t.TempDir()
cfg := createPersistenceConfig(tempDir)