(t *testing.T)
| 114 | } |
| 115 | |
| 116 | func TestSharedPlanPathMessage(t *testing.T) { |
| 117 | t.Parallel() |
| 118 | |
| 119 | require.Equal( |
| 120 | t, |
| 121 | "the plan path /home/coder/plan.md is no longer supported at the home root; use the chat-specific plan path: /home/coder/.coder/plans/PLAN-chat.md", |
| 122 | sharedPlanPathMessage( |
| 123 | "/home/coder/plan.md", |
| 124 | "/home/coder/.coder/plans/PLAN-chat.md", |
| 125 | ), |
| 126 | ) |
| 127 | require.Equal( |
| 128 | t, |
| 129 | "the plan path /home/coder/plan.md could not be verified because the workspace is currently unavailable to resolve the chat-specific plan path, try again shortly", |
| 130 | planPathVerificationMessage("/home/coder/plan.md"), |
| 131 | ) |
| 132 | } |
nothing calls this directly
no test coverage detected