diff --git a/test/hive/jsonrpc_test.rb b/test/hive/jsonrpc_test.rb index d9e217b318b3810f3b0c2109e082006e27578edf..98c8bf954df2b3eed7614c54392fda9f3d72e42a 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"