(t *testing.T)
| 535 | } |
| 536 | |
| 537 | func TestGet_FilePathMatch_FullRelativePath(t *testing.T) { |
| 538 | tmpDir := createGetTestFilesWithSubdirs(t) |
| 539 | resetGetFlags() |
| 540 | taskDir = tmpDir |
| 541 | |
| 542 | output := captureGetOutput(t, "cli/042-task.md") |
| 543 | |
| 544 | if !strings.Contains(output, "Task: cli-042") { |
| 545 | t.Error("Expected full relative path to match task cli-042") |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | func TestGet_FilePathMatch_FilenameWithExtension(t *testing.T) { |
| 550 | tmpDir := createGetTestFilesWithSubdirs(t) |
nothing calls this directly
no test coverage detected