Method
deleteWorkspace
(ctx context.Context, workspaceID uuid.UUID)
Source from the content-addressed store, hash-verified
| 110 | } |
| 111 | |
| 112 | func (m *fakeClient) deleteWorkspace(ctx context.Context, workspaceID uuid.UUID) error { |
| 113 | m.logger.Debug(ctx, "called fake DeleteWorkspace", slog.F("workspace_id", workspaceID.String())) |
| 114 | // Simulate successful deletion in tests |
| 115 | return nil |
| 116 | } |
| 117 | |
| 118 | // fakeAppStatusUpdater implements the appStatusUpdater interface for testing. |
| 119 | type fakeAppStatusUpdater struct { |
Callers
nothing calls this directly
Tested by
no test coverage detected