(t *testing.T)
| 128 | } |
| 129 | |
| 130 | func TestVersionedBinaryPath(t *testing.T) { |
| 131 | got := versionedBinaryPath("/tmp", "copilot.exe", "1.0.0") |
| 132 | want := filepath.Join("/tmp", "copilot_1.0.0.exe") |
| 133 | if got != want { |
| 134 | t.Fatalf("versionedBinaryPath() = %q want %q", got, want) |
| 135 | } |
| 136 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…