(t *testing.T)
| 257 | } |
| 258 | |
| 259 | func TestProgressPath(t *testing.T) { |
| 260 | got := ProgressPath("/foo/bar/.chief/prds/my-prd/prd.json") |
| 261 | want := "/foo/bar/.chief/prds/my-prd/progress.md" |
| 262 | if got != want { |
| 263 | t.Errorf("ProgressPath() = %q, want %q", got, want) |
| 264 | } |
| 265 | } |
nothing calls this directly
no test coverage detected