Sha256: 572d6b135fc662ebd026ff805b3ab68597f5f2ba6dcee48cfc749f903a4dc118
Contents?: true
Size: 464 Bytes
Versions: 8
Compression:
Stored size: 464 Bytes
Contents
module Fog module Storage class GoogleJSON class Mock include Utils include Fog::Google::Shared MockClient = Struct.new(:issuer) def initialize(options = {}) shared_initialize(options[:google_project], GOOGLE_STORAGE_JSON_API_VERSION, GOOGLE_STORAGE_JSON_BASE_URL) @client = MockClient.new('test') end def signature(_params) "foo" end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems