From f33fe309b492d488572a2d3206bb88c3bee835fc Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sun, 1 Jun 2025 02:09:26 +0900 Subject: [PATCH] Rename test directory from `model_context_protocol` to `mcp` Follow-up to #24. The directory structure of the product code and test code is expected to match. --- test/{model_context_protocol => mcp}/configuration_test.rb | 0 test/{model_context_protocol => mcp}/instrumentation_test.rb | 0 test/{model_context_protocol => mcp}/methods_test.rb | 0 test/{model_context_protocol => mcp}/prompt_test.rb | 0 test/{model_context_protocol => mcp}/server_test.rb | 0 test/{model_context_protocol => mcp}/string_utils_test.rb | 0 test/{model_context_protocol => mcp}/tool/input_schema_test.rb | 0 test/{model_context_protocol => mcp}/tool_test.rb | 0 .../transports/stdio_transport_test.rb | 0 9 files changed, 0 insertions(+), 0 deletions(-) rename test/{model_context_protocol => mcp}/configuration_test.rb (100%) rename test/{model_context_protocol => mcp}/instrumentation_test.rb (100%) rename test/{model_context_protocol => mcp}/methods_test.rb (100%) rename test/{model_context_protocol => mcp}/prompt_test.rb (100%) rename test/{model_context_protocol => mcp}/server_test.rb (100%) rename test/{model_context_protocol => mcp}/string_utils_test.rb (100%) rename test/{model_context_protocol => mcp}/tool/input_schema_test.rb (100%) rename test/{model_context_protocol => mcp}/tool_test.rb (100%) rename test/{model_context_protocol => mcp}/transports/stdio_transport_test.rb (100%) diff --git a/test/model_context_protocol/configuration_test.rb b/test/mcp/configuration_test.rb similarity index 100% rename from test/model_context_protocol/configuration_test.rb rename to test/mcp/configuration_test.rb diff --git a/test/model_context_protocol/instrumentation_test.rb b/test/mcp/instrumentation_test.rb similarity index 100% rename from test/model_context_protocol/instrumentation_test.rb rename to test/mcp/instrumentation_test.rb diff --git a/test/model_context_protocol/methods_test.rb b/test/mcp/methods_test.rb similarity index 100% rename from test/model_context_protocol/methods_test.rb rename to test/mcp/methods_test.rb diff --git a/test/model_context_protocol/prompt_test.rb b/test/mcp/prompt_test.rb similarity index 100% rename from test/model_context_protocol/prompt_test.rb rename to test/mcp/prompt_test.rb diff --git a/test/model_context_protocol/server_test.rb b/test/mcp/server_test.rb similarity index 100% rename from test/model_context_protocol/server_test.rb rename to test/mcp/server_test.rb diff --git a/test/model_context_protocol/string_utils_test.rb b/test/mcp/string_utils_test.rb similarity index 100% rename from test/model_context_protocol/string_utils_test.rb rename to test/mcp/string_utils_test.rb diff --git a/test/model_context_protocol/tool/input_schema_test.rb b/test/mcp/tool/input_schema_test.rb similarity index 100% rename from test/model_context_protocol/tool/input_schema_test.rb rename to test/mcp/tool/input_schema_test.rb diff --git a/test/model_context_protocol/tool_test.rb b/test/mcp/tool_test.rb similarity index 100% rename from test/model_context_protocol/tool_test.rb rename to test/mcp/tool_test.rb diff --git a/test/model_context_protocol/transports/stdio_transport_test.rb b/test/mcp/transports/stdio_transport_test.rb similarity index 100% rename from test/model_context_protocol/transports/stdio_transport_test.rb rename to test/mcp/transports/stdio_transport_test.rb