From b11f7a88ee680ec9b1cd0912495061085265c17b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 20:09:38 +0000 Subject: [PATCH 1/2] Initial plan From 810c0381a164e1a1ff5973f78bc5f4eaf04f2348 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 4 Jan 2026 20:12:43 +0000 Subject: [PATCH 2/2] test: add missing test coverage for matching_markets method Co-authored-by: bougyman <6848+bougyman@users.noreply.github.com> --- test/domeapi/client_test.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/domeapi/client_test.rb b/test/domeapi/client_test.rb index a783e1b..50cf37c 100644 --- a/test/domeapi/client_test.rb +++ b/test/domeapi/client_test.rb @@ -32,4 +32,8 @@ it 'returns a polymarket client' do _(client.polymarket).must_be_instance_of Rubyists::Domeapi::Polymarket::Client end + + it 'returns a matching markets client' do + _(client.matching_markets).must_be_instance_of Rubyists::Domeapi::MatchingMarkets + end end