You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert_predicate(status,:success?,"Expected #{file.path} to exit with success, but got exit status #{status.exitstatus}\n\nSTDOUT: #{stdout}\n\nSTDERR: #{stderr}")
39
+
assert_empty(stderr,"Expected no stderr in: #{stderr}")
40
+
refute_empty(stdout,"Expected stdout not to be empty")
41
+
42
+
stdout
43
+
end
44
+
45
+
assert_json_lines(
46
+
[
47
+
{jsonrpc: "2.0",id: "1",result: {}},
48
+
{
49
+
jsonrpc: "2.0",
50
+
id: "2",
51
+
result: {
52
+
tools: [
53
+
{
54
+
name: "example_tool",
55
+
description: "A simple example tool that echoes back its arguments",
0 commit comments