We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed29716 commit 3302df0Copy full SHA for 3302df0
t/lite_app.t
@@ -68,6 +68,11 @@ subtest 'MCP endpoint' => sub {
68
is $result->{content}[0]{text}, 'Echo: i ♥ mcp', 'tool call result';
69
};
70
71
+ subtest 'Tool call (Unicode and async)' => sub {
72
+ my $result = $client->call_tool('echo_async', {msg => 'i ♥ mcp'});
73
+ is $result->{content}[0]{text}, 'Echo (async): i ♥ mcp', 'tool call result';
74
+ };
75
+
76
subtest 'Tool call (with HTTP header)' => sub {
77
$client->ua->once(
78
start => sub ($ua, $tx) {
0 commit comments