Sha256: 89193c21e321ebcab2a764508fd1f3430209ad5e30b200b5d8eb1b1d648b1ec4
Contents?: true
Size: 618 Bytes
Versions: 54
Compression:
Stored size: 618 Bytes
Contents
class Ey::Core::Client class Real def get_provider_location(params={}) id = params.delete("id") url = params.delete("url") request( :path => "/provider-locations/#{id}", :url => url ) end end class Mock def get_provider_location(params={}) extract_url_params!(params) identity = params["id"] || params["provider_location"] provider_location = self.find(:provider_locations, identity) body = provider_location.dup body.delete("name") response( :body => {"provider_location" => body}, ) end end end
Version data entries
54 entries across 54 versions & 3 rubygems