feat: add MCP enums, ToolError, and Caller
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package client_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"s1d3sw1ped/robinhood-agentic-mcp/client"
|
||||
)
|
||||
|
||||
func TestEnums_wireValues(t *testing.T) {
|
||||
t.Parallel()
|
||||
if client.Buy != "buy" || client.Stop != "stop_market" || client.StopLoss != "stop_loss" {
|
||||
t.Fatal("side/type")
|
||||
}
|
||||
if client.GFD != "gfd" || client.RegularHours != "regular_hours" {
|
||||
t.Fatal("tif/hours")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user