From 8d8f1c029497477f7cd3967ed0ad4c9bbb16f706 Mon Sep 17 00:00:00 2001
From: th-kim0823
Date: Sun, 10 May 2026 00:20:59 +0900
Subject: [PATCH] =?UTF-8?q?test(cli):=20bump=20expected=20MCP=20tool=20cou?=
=?UTF-8?q?nt=206=20=E2=86=92=207=20for=20fb-35=20fetch?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
cli_mcp_initialize_then_tools_list asserts the exact tools[]
count returned by tools/list. fb-35 added kebab__fetch as the
7th tool — bump the assertion accordingly.
Co-Authored-By: Claude Opus 4.7 (1M context)
---
crates/kebab-cli/tests/cli_mcp_smoke.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/kebab-cli/tests/cli_mcp_smoke.rs b/crates/kebab-cli/tests/cli_mcp_smoke.rs
index 1c0b07b..cc22302 100644
--- a/crates/kebab-cli/tests/cli_mcp_smoke.rs
+++ b/crates/kebab-cli/tests/cli_mcp_smoke.rs
@@ -66,8 +66,8 @@ fn cli_mcp_initialize_then_tools_list() {
.expect("tools/list result.tools must be an array");
assert_eq!(
tools.len(),
- 6,
- "expected 6 tools (schema, doctor, search, ask, ingest_file, ingest_stdin), got {}: {list}",
+ 7,
+ "expected 7 tools (schema, doctor, search, ask, fetch, ingest_file, ingest_stdin), got {}: {list}",
tools.len()
);