(name string, description string, body string)
| 661 | } |
| 662 | |
| 663 | func userSkillMarkdown(name string, description string, body string) string { |
| 664 | return fmt.Sprintf("---\nname: %s\ndescription: %s\n---\n\n%s\n", name, description, body) |
| 665 | } |
| 666 | |
| 667 | func requireSDKErrorStatus(t *testing.T, err error, status int, msgAndArgs ...any) *codersdk.Error { |
| 668 | t.Helper() |
no outgoing calls
no test coverage detected