(t *testing.T)
| 85 | } |
| 86 | |
| 87 | func TestRunListWithNoPRDs(t *testing.T) { |
| 88 | tmpDir := t.TempDir() |
| 89 | |
| 90 | opts := ListOptions{ |
| 91 | BaseDir: tmpDir, |
| 92 | } |
| 93 | |
| 94 | err := RunList(opts) |
| 95 | if err != nil { |
| 96 | t.Errorf("RunList() returned error: %v", err) |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | func TestRunListWithPRDs(t *testing.T) { |
| 101 | tmpDir := t.TempDir() |