fix: add missing mockStorage methods for Storage interface compliance

Added GetDependenciesWithMetadata and GetDependentsWithMetadata to mockStorage
to match the Storage interface definition.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-30 00:26:56 -08:00
parent 99e205868e
commit 0f8d7093b2

View File

@@ -56,6 +56,12 @@ func (m *mockStorage) GetDependencies(ctx context.Context, issueID string) ([]*t
func (m *mockStorage) GetDependents(ctx context.Context, issueID string) ([]*types.Issue, error) {
return nil, nil
}
func (m *mockStorage) GetDependenciesWithMetadata(ctx context.Context, issueID string) ([]*types.IssueWithDependencyMetadata, error) {
return nil, nil
}
func (m *mockStorage) GetDependentsWithMetadata(ctx context.Context, issueID string) ([]*types.IssueWithDependencyMetadata, error) {
return nil, nil
}
func (m *mockStorage) GetDependencyRecords(ctx context.Context, issueID string) ([]*types.Dependency, error) {
return nil, nil
}