(t *testing.T)
| 5 | import "testing" |
| 6 | |
| 7 | func TestGetGitHubReadOnly(t *testing.T) { |
| 8 | // getGitHubReadOnly always returns true; the GitHub MCP server is unconditionally read-only. |
| 9 | result := getGitHubReadOnly() |
| 10 | if !result { |
| 11 | t.Errorf("getGitHubReadOnly() = %v, want true", result) |
| 12 | } |
| 13 | } |
nothing calls this directly
no test coverage detected