cliMockSource implements sync.Source for CLI integration tests.
| 229 | |
| 230 | // cliMockSource implements sync.Source for CLI integration tests. |
| 231 | type cliMockSource struct { |
| 232 | name string |
| 233 | tasks []sync.ExternalTask |
| 234 | } |
| 235 | |
| 236 | func (m *cliMockSource) Name() string { return m.name } |
| 237 | func (m *cliMockSource) ValidateConfig(_ sync.SourceConfig) error { return nil } |
nothing calls this directly
no outgoing calls
no test coverage detected