From bfc0b75e6c8a8c1cce96da89dff29b9b59c2dc71 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Mon, 3 Nov 2025 07:16:11 +0100 Subject: [PATCH] Not used --- test/test_helpers/mcp_helper.rb | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 test/test_helpers/mcp_helper.rb diff --git a/test/test_helpers/mcp_helper.rb b/test/test_helpers/mcp_helper.rb deleted file mode 100644 index 27496eaa2..000000000 --- a/test/test_helpers/mcp_helper.rb +++ /dev/null @@ -1,12 +0,0 @@ -module McpHelper - def parse_paginated_response(response) - records_match = response.match(/Records:\n```\n(\[.*\])\n```/m) - assert records_match, "Could not find any records in the paginated response" - records = JSON.parse(records_match[1]) - - next_param_match = response.match(/next page:\n```\n(\[.*\])\n```/m) - next_param = next_param_match[1] if next_param_match - - { records: records, next_param: next_param } - end -end