(t *testing.T)
| 471 | } |
| 472 | |
| 473 | func TestRemoveCmd_Default(t *testing.T) { |
| 474 | installedPort := installForTestRemove(t, "glog@0.6.0", configs.RemoveOptions{}) |
| 475 | if installed, err := installedPort.Installed(); err != nil { |
| 476 | t.Fatalf("failed to check installation status of glog@0.6.0: %v", err) |
| 477 | } else if installed { |
| 478 | t.Fatal("glog@0.6.0 should have been removed") |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | func TestRemoveCmd_BuildCache(t *testing.T) { |
| 483 | installedPort := installForTestRemove(t, "glog@0.6.0", configs.RemoveOptions{ |
nothing calls this directly
no test coverage detected