(t *testing.T)
| 28 | } |
| 29 | |
| 30 | func TestShowSinglePackage(t *testing.T) { |
| 31 | output, err := pkgstats(t, []string{"show", "php"}) |
| 32 | if err != nil { |
| 33 | t.Fatalf("Failed to run command: %v", err) |
| 34 | } |
| 35 | linesContainsPackageStatistic(t, strings.Split(output, "\n"), []string{"php"}) |
| 36 | } |
nothing calls this directly
no test coverage detected