(t *testing.T)
| 631 | } |
| 632 | |
| 633 | func TestCollectArchivedIDs_NoArchive(t *testing.T) { |
| 634 | tmpDir := t.TempDir() |
| 635 | |
| 636 | s := scanner.NewScanner(tmpDir, false, nil) |
| 637 | ids := collectArchivedIDs(s) |
| 638 | |
| 639 | if ids != nil { |
| 640 | t.Errorf("expected nil for no archive, got %v", ids) |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | func TestRunValidate_WithConfig_Scopes(t *testing.T) { |
| 645 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected