(t *testing.T)
| 997 | } |
| 998 | |
| 999 | func TestProcessorProcessPaths_InvalidMode(t *testing.T) { |
| 1000 | p := NewProcessor(zap.NewNop()) |
| 1001 | _, _, err := p.ProcessPaths(context.Background(), []string{"."}, "invalid-mode") |
| 1002 | if err == nil { |
| 1003 | t.Error("expected error for invalid processing mode") |
| 1004 | } |
| 1005 | } |
| 1006 | |
| 1007 | // --------------------------------------------------------------------------- |
| 1008 | // Chunker tests |
nothing calls this directly
no test coverage detected