From 2937bae6a55301d098c9b6fa593b148c7a39639a Mon Sep 17 00:00:00 2001 From: inertia <amartin75@gmail.com> Date: Mon, 22 Jun 2020 08:38:07 -0700 Subject: [PATCH] skip bridge signatures --- test/hive/jsonrpc_test.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/hive/jsonrpc_test.rb b/test/hive/jsonrpc_test.rb index d9e217b..98c8bf9 100644 --- a/test/hive/jsonrpc_test.rb +++ b/test/hive/jsonrpc_test.rb @@ -266,6 +266,9 @@ module Hive assert_equal Hash, methods.class, "did not expect: #{methods.inspect}" methods.each do |method, signature| assert_equal Symbol, method.class, "did not expect: #{method.inspect}" + + next if api == :bridge + assert_equal Hashie::Mash, signature.class, "did not expect: #{signature.inspect}" refute_nil signature.args, "did not expect #{api}.#{method} to have nil args" -- GitLab